milis/rootfs/etc/rc.d/init.d/init_single

37 lines
800 B
Plaintext
Raw Normal View History

2016-02-24 01:27:23 +01:00
#!/bin/sh
. /lib/lsb/init-functions
case ${1} in
start)
do_mount_virtualfs || exit 1
do_load_modules || exit 1
do_start_udev || exit 1
do_start_checkfs || exit 1
do_start_mountfs || exit 1
2016-04-15 20:55:51 +02:00
do_start_localnet
#milis-kur
2016-02-24 01:27:23 +01:00
do_start_clock || exit 1
do_start_cleanfs || exit 1
do_start_udev_retry || exit 1
do_start_swap || exit 1
do_start_console || exit 1
do_start_sysctl || exit 1
2016-04-15 20:55:51 +02:00
bolumleri_bagla || exit 1
2016-03-07 21:59:57 +01:00
klavye_ayar || exit 1
2016-02-24 01:27:23 +01:00
;;
stop)
do_stop_clock
do_stop_swap
do_stop_network
do_stop_mountfs
do_stop_localnet
;;
*)
echo "Usage: ${0} {start|stop}"
exit 1
;;
esac
exit 0