aboutsummaryrefslogtreecommitdiff
path: root/core/sysmgr/message
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-10-10 12:48:16 +0300
committerCem Keylan <cem@ckyln.com>2020-10-10 12:48:16 +0300
commit84fa2e68a0515f65dd1e9a2f27fb237370d507db (patch)
treed084bd4f2ea7397c8e335e6040af09a9ab82c84a /core/sysmgr/message
parentc853e18cc8287c38effe781835ca5127d3a9812c (diff)
downloadrepository-84fa2e68a0515f65dd1e9a2f27fb237370d507db.tar.gz
sysmgr: switch to C version
Diffstat (limited to 'core/sysmgr/message')
-rw-r--r--core/sysmgr/message21
1 files changed, 2 insertions, 19 deletions
diff --git a/core/sysmgr/message b/core/sysmgr/message
index 85ea0f6d..854dbb4d 100644
--- a/core/sysmgr/message
+++ b/core/sysmgr/message
@@ -1,25 +1,8 @@
IMPORTANT:
- In order to enable sysmgr you need to
- uncomment the line on '/etc/init/sysmgr.boot'
- and '/etc/init/sysmgr.pre.shutdown'
+ In order to enable sysmgr you need to uncomment the line on
+ '/etc/init/sysmgr.boot'.
You can do this as root by doing,
sed -i 's/# //' /etc/init/sysmgr.boot /etc/init/sysmgr.pre.shutdown
- Carbs packages now come with sysmgr services by default,
- but didn't have a release bump to avoid a rebuild just to
- get sysmgr services. You can manually copy all your sysmgr
- services with the following command.
-
- mkdir -p /etc/sysmgr
- for service in /etc/sv/* ; do
- cp \$service/run /etc/sysmgr/\${service##*/}
- done
-
- You can then copy all the services you run in /var/service to
- /var/sysmgr by doing,
-
- for service in /var/service/* ; do
- ln -sv /etc/sysmgr/\${service##*/} /var/sysmgr
- done