aboutsummaryrefslogtreecommitdiff
path: root/docs/wiki/system/service-management.txt
blob: fc49f6031bbcb8e2a17c19a3a538684912892fe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Service Management
==================

Carbs Linux uses busybox-runit as the default system supervisor.


Enabling Services
-----------------

Services start immediately when you enable them, and run by default on boot.


    $ ln -s /etc/sv/acpid /var/service


Disabling a service
-------------------

    $ unlink /var/service/acpid


Starting a service
------------------

    $ sv start acpid


Stopping a service
------------------

    $ sv stop acpid


More
----

Runit is extremely flexible and simple. Refer to `sv`, `runsv`, `svc`, `runsvdir`
help outputs for more information.