Skip to content

Commit

Permalink
fixes rocky installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Carvalho committed Sep 25, 2024
1 parent 31d0a7b commit ed68cf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ disable_unsupported_services() {
restart_services() {
# We need to reload any of our changes to the systemd files before restarting
systemctl daemon-reload
systemctl list-unit-files | grep 'cyral-' | grep enabled | awk '{print $1}' | xargs -r systemctl restart
systemctl list-unit-files | grep 'cyral-' | grep disabled | awk '{print $1}' | xargs -r systemctl stop
systemctl list-unit-files --state=enabled | grep 'cyral-' | awk '{print $1}' | xargs -r systemctl restart
systemctl list-unit-files --state=disabled | grep 'cyral-' | awk '{print $1}' | xargs -r systemctl stop
}

# Perform all Post Installation Tasks
Expand Down

0 comments on commit ed68cf0

Please sign in to comment.