repo.or.cz
/
linux_from_scratch.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* Merged newxml into HEAD
[linux_from_scratch.git]
/
bootscripts
/
contrib
/
new-boot-0.2
/
sbin
/
init.d
/
single
blob
cdfbf120d4b97eb0e45289afdda281bbe717f572
1
#!/bin/sh
2
3
case
"
$1
"
in
4
start
)
5
echo
'Maintenance mode -> no boot scripts will be run'
6
;;
7
stop
)
8
;;
9
*)
10
exit
1
11
;;
12
esac
13
14
exit
0