diff options
author | Mario Preksavec <mario at slackware dot hr> | 2019-05-18 06:43:50 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-05-18 06:43:50 +0700 |
commit | 4d8764c7cb268c2946c4e7b646fea759671825b1 (patch) | |
tree | b2007ac79f0d96adeb3c619e078c2bdea9aeaee7 /system/dlm/README.SLACKWARE | |
parent | 832fba7887d31db10bf533579caad343531896e7 (diff) |
system/dlm: Added (Distributed Lock Manager).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/dlm/README.SLACKWARE')
-rw-r--r-- | system/dlm/README.SLACKWARE | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/system/dlm/README.SLACKWARE b/system/dlm/README.SLACKWARE new file mode 100644 index 000000000000..1dcc2ecdfa9f --- /dev/null +++ b/system/dlm/README.SLACKWARE @@ -0,0 +1,18 @@ +Starting the daemon on boot +--------------------------- + +You may wish to add these lines to /etc/rc.d/rc.local to start the service: + + if [ -x /etc/rc.d/rc.dlm ]; then + /etc/rc.d/rc.dlm start + fi + +You may also add these lines to /etc/rc.d/rc.local_shutdown: + + if [ -x /etc/rc.d/rc.dlm ]; then + /etc/rc.d/rc.dlm stop + fi + +Remember to give executable permission to /etc/rc.d/rc.local_shutdown: + + chmod 0755 /etc/rc.d/rc.local_shutdown |