Alpine Linux Init System.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sun, 04 Mar 2018 00:29:22 +0200
changeset 2235 eb6107487d83
parent 2234 30fb3f7626e3
child 2236 15e9cc9e054f
Alpine Linux Init System.
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
 ===============