mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix typo in redirecting shell output to /dev/null
This commit is contained in:
parent
456393d4db
commit
41b6c3c2bf
1 changed files with 1 additions and 1 deletions
|
@ -2907,7 +2907,7 @@ def running_systemd(name, cache=True):
|
|||
'''\
|
||||
#!/usr/bin/env bash
|
||||
set -x
|
||||
if ! which systemctl 1>/dev/nulll 2>/dev/null;then exit 2;fi
|
||||
if ! which systemctl 1>/dev/null 2>/dev/null;then exit 2;fi
|
||||
for i in \\
|
||||
/run/systemd/journal/dev-log\\
|
||||
/run/systemd/journal/flushed\\
|
||||
|
|
Loading…
Add table
Reference in a new issue