bash startfiles: Add file to make sure that all paths are available.

This commit is contained in:
Michael Tremer
2012-11-15 13:50:36 +01:00
parent 44d148b9a8
commit 83cc9084a9

View File

@@ -0,0 +1,11 @@
# Make sure the basic paths are always available.
pathmunge /bin
pathmunge /usr/bin
pathmunge /usr/local/bin
for directory in $(find /opt/*/bin -maxdepth 1 -type d 2>/dev/null); do
pathmunge ${directory} after
done
unset directory