]> git.pld-linux.org Git - projects/rc-scripts.git/blob - init/cpusets.conf
use AM_CPPFLAGS instead of INCLUDES
[projects/rc-scripts.git] / init / cpusets.conf
1 description "Creates/Removes all cpu sets configured to start at boot time."
2
3 start on pld.sysinit-done
4 stop on pld.shutdown-started
5
6 console output
7 task
8
9 pre-start script
10         # test that cpusets are configured
11         . /etc/sysconfig/system
12         if [ "${CPUSETS:-no}" = "no" ]; then
13                 /sbin/initctl -q stop
14         fi
15 end script
16
17 script
18         export USE_UPSTART=no
19         exec /etc/rc.d/init.d/cpusets start
20 end script
21
22 pre-stop script
23         export USE_UPSTART=no
24         exec /etc/rc.d/init.d/cpusets stop
25 end script
This page took 0.025509 seconds and 3 git commands to generate.