initial commit

This commit is contained in:
2021-02-23 14:56:56 +01:00
commit 6f96a5b920
41 changed files with 369 additions and 0 deletions

12
templates/wlan_auto_toggle.j2 Executable file
View File

@@ -0,0 +1,12 @@
#! /bin/sh
if [ "$1" = "{{ ansible_default_ipv4.interface }}" ]; then
case "$2" in
up)
nmcli radio wifi off
;;
down)
nmcli radio wifi on
;;
esac
fi