mirror of
https://git.freebsd.org/ports.git
synced 2025-05-22 19:56:53 -04:00
8 lines
114 B
Bash
8 lines
114 B
Bash
#!/usr/bin/env bash
|
|
|
|
for i in `ls %%ETCDIR%%/envvars.d/*.env`
|
|
do
|
|
. ${i}
|
|
done
|
|
|
|
exec %%DATADIR%%/bin/hadoop "$@"
|