We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2965cb commit 8746120Copy full SHA for 8746120
install-linux.sh
@@ -329,7 +329,8 @@ disable_unsupported_services () {
329
restart_services () {
330
# We need to reload any of our changes to the systemd files before restarting
331
systemctl daemon-reload
332
- systemctl list-unit-files | grep 'cyral-' | awk '{print $1}' | xargs -r systemctl restart
+ systemctl list-unit-files | grep 'cyral-' | grep enabled | awk '{print $1}' | xargs -r systemctl restart
333
+ systemctl list-unit-files | grep 'cyral-' | grep disabled | awk '{print $1}' | xargs -r systemctl stop
334
}
335
336
# Perform all Post Installation Tasks
0 commit comments