added man-patch.xml file
[linux_from_scratch.git] / bootscripts / rc.d / init.d / mountproc
blob201887562f8926dc109b8ad2ced0984acd14320f
1 #!/bin/bash
2 # Begin $rc_base/init.d/mountproc
4 # Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6 source /etc/sysconfig/rc
7 source $rc_functions
9 echo "Mounting proc file system..."
10 mount /proc
11 evaluate_retval
13 # End $rc_base/init.d/mountproc