aboutsummaryrefslogtreecommitdiff
path: root/core/sysmgr/post-install
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2020-05-02 00:22:49 +0300
committerCem Keylan <cem@ckyln.com>2020-05-02 00:22:49 +0300
commit8f00664b20e3ab6b6fd3e804c41acbfab39f43a3 (patch)
tree91eefdf04e73224beca734ab2a96ad8a03bb11bf /core/sysmgr/post-install
parent0850fc9599e6e6872dfb943728ec778bc7a9d7c6 (diff)
downloadrepository-8f00664b20e3ab6b6fd3e804c41acbfab39f43a3.tar.gz
sysmgr: move post-install to message
Diffstat (limited to 'core/sysmgr/post-install')
-rwxr-xr-xcore/sysmgr/post-install30
1 files changed, 0 insertions, 30 deletions
diff --git a/core/sysmgr/post-install b/core/sysmgr/post-install
deleted file mode 100755
index abb9ba88..00000000
--- a/core/sysmgr/post-install
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh -e
-
-cat <<EOF
-IMPORTANT:
-
- In order to enable sysmgr you need to
- uncomment the line on '/etc/init/sysmgr.boot'
- and '/etc/init/sysmgr.pre.shutdown'
-
- 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
-
-EOF