* Merged newxml into HEAD
[linux_from_scratch.git] / bootscripts / contrib / new-boot-0.2 / sbin / init.d / single
blobcdfbf120d4b97eb0e45289afdda281bbe717f572
1 #!/bin/sh
3 case "$1" in
4 start)
5 echo 'Maintenance mode -> no boot scripts will be run'
6 ;;
7 stop)
8 ;;
9 *)
10 exit 1
12 esac
14 exit 0