# HG changeset patch # User Oleksandr Gavenko # Date 1520116162 -7200 # Node ID eb6107487d83f5e75787b41fe1c0fd768d77ba5e # Parent 30fb3f7626e3183f40db94af7321b9bb24c1d362 Alpine Linux Init System. diff -r 30fb3f7626e3 -r eb6107487d83 alpine.rst --- a/alpine.rst Sun Mar 04 00:25:11 2018 +0200 +++ b/alpine.rst Sun Mar 04 00:29:22 2018 +0200 @@ -6,6 +6,32 @@ .. contents:: :local: +Init system +=========== + +Manage run levels:: + + rc-update add $SERVICE $LEVEL + rc-update del $SERVICE $LEVEL + rc-service $SERVICE start + rc-service $SERVICE restart + rc-service $SERVICE stop + +Equivalent to shutdown -r now from traditional GNU/Linux systems:: + + reboot + +Equivalent to shutdown -h now from traditional GNU/Linux systems:: + + halt + +To turn off the machine:: + + poweroff + +https://wiki.alpinelinux.org/wiki/Alpine_Linux_Init_System + Alpine Linux Init System + Package manager ===============