mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
95b1c2e57b
- Add hadoop user to GIDs/UIDs (955) The Apache Hadoop software library is a framework that allows for the distributed processing of large data sets across clusters of computers using a simple programming model. WWW: http://hadoop.apache.org/ Approved by: culot@, jadawin@ (mentors) Feature safe: yes
8 lines
119 B
Bash
8 lines
119 B
Bash
#!/usr/bin/env bash
|
|
for i in `ls %%HADOOP_ETC%%/envvars.d/*.env`
|
|
do
|
|
. ${i}
|
|
done
|
|
|
|
exec %%HADOOP_HOME%%/bin/hadoop $@
|