Skip to content

Commit

Permalink
add check for systemctl for systemd
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Feb 22, 2023
1 parent 1262652 commit 66849b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def check(self, container, pre_command=None, time=False, multi_user=False):

commands = "" if not time else " time"

# Multi user mode requires openssl
# Multi user mode requires openssl and systemctl
if multi_user:
commands += " openssl"
commands += " openssl systemctl"
if pre_command and os.path.exists(pre_command):
pre_command = read_file(pre_command)

Expand Down

0 comments on commit 66849b7

Please sign in to comment.