Skip to content

Commit

Permalink
fix invalid bash-style redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Griffin committed Dec 7, 2020
1 parent a281960 commit d4accfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootsrc/init
Expand Up @@ -33,7 +33,7 @@ done </etc/modules
(netd &)

# try to start sshd if the sshd layer was mounted by initrd
if which startsshd &>/dev/null; then
if which startsshd >/dev/null 2>&1; then
startsshd
fi

Expand Down

0 comments on commit d4accfe

Please sign in to comment.