Update to 2022-10-11 13:00

This commit is contained in:
Daniel Berteaud
2022-10-11 13:00:08 +02:00
parent 5fc7b4e7ea
commit 336cfcca3a
5 changed files with 32 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env bash
set -eo pipefail
case "$2" in
up)
if [[ "$1" = "nomad" ]]; then
ip link set dev $1 promisc on
fi
;;
esac