Skip to content

Commit

Permalink
fix: Suppress expected WARN logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sbyrnes committed Mar 14, 2024
1 parent 21f9db4 commit f4f6fcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal-lab-setup-assets/workshop-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ chmod 0440 /etc/sudoers.d/clab
echo "syntax on" > /home/clab/.vimrc

# Required in some environments, like ours, to make clab happy
/sbin/sysctl -w net.ipv6.conf.all.disable_ipv6=1
/sbin/sysctl -w net.ipv6.conf.default.disable_ipv6=1
/sbin/sysctl -w net.ipv6.conf.lo.disable_ipv6=1
/sbin/sysctl -w net.ipv6.conf.all.disable_ipv6=1 2>/dev/null
/sbin/sysctl -w net.ipv6.conf.default.disable_ipv6=1 2>/dev/null
/sbin/sysctl -w net.ipv6.conf.lo.disable_ipv6=1 2>/dev/null

/usr/sbin/sshd -D

0 comments on commit f4f6fcb

Please sign in to comment.