diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-12-10 21:17:16 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-12-12 22:04:27 +0100 |
commit | 7c1f7039170a25f192d87235476179f7cfe01a85 (patch) | |
tree | fc8e77b7176fa730b30b20081e76f2527371e9a3 /roles/workstation/templates | |
parent | 21fc0867dc42128434e5c46ca684d9a966184b8a (diff) | |
download | rules-7c1f7039170a25f192d87235476179f7cfe01a85.tar.gz |
chore: explode workstation role in subroles
Diffstat (limited to 'roles/workstation/templates')
-rwxr-xr-x | roles/workstation/templates/apm-hibernate | 5 | ||||
-rwxr-xr-x | roles/workstation/templates/apm-resume | 16 | ||||
-rwxr-xr-x | roles/workstation/templates/apm-suspend | 5 | ||||
-rw-r--r-- | roles/workstation/templates/docker-daemon.json.j2 | 8 | ||||
-rw-r--r-- | roles/workstation/templates/ssh.config.j2 | 17 | ||||
-rw-r--r-- | roles/workstation/templates/xorg-intel.conf | 9 |
6 files changed, 0 insertions, 60 deletions
diff --git a/roles/workstation/templates/apm-hibernate b/roles/workstation/templates/apm-hibernate deleted file mode 100755 index ef90fed..0000000 --- a/roles/workstation/templates/apm-hibernate +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -set -x -e - -pkill -USR1 xidle diff --git a/roles/workstation/templates/apm-resume b/roles/workstation/templates/apm-resume deleted file mode 100755 index 18397b4..0000000 --- a/roles/workstation/templates/apm-resume +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -set -x -e - -sleep 3 - -sh /etc/netstart iwn0 - -wg_interfaces=$(find /etc/wireguard -type f | sed 's/\.conf$//g') -for wg_interface in ${wg_interfaces}; do - wg_interface=$(basename "${wg_interface}") - wg-quick down "${wg_interface}" - wg-quick up "${wg_interface}" -done - -rcctl -d restart pcscd diff --git a/roles/workstation/templates/apm-suspend b/roles/workstation/templates/apm-suspend deleted file mode 100755 index ef90fed..0000000 --- a/roles/workstation/templates/apm-suspend +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh - -set -x -e - -pkill -USR1 xidle diff --git a/roles/workstation/templates/docker-daemon.json.j2 b/roles/workstation/templates/docker-daemon.json.j2 deleted file mode 100644 index 2952d24..0000000 --- a/roles/workstation/templates/docker-daemon.json.j2 +++ /dev/null @@ -1,8 +0,0 @@ -{ - "default-address-pools" : [ - { - "base" : "172.240.0.0/16", - "size" : 24 - } - ] -} diff --git a/roles/workstation/templates/ssh.config.j2 b/roles/workstation/templates/ssh.config.j2 deleted file mode 100644 index 2a3a903..0000000 --- a/roles/workstation/templates/ssh.config.j2 +++ /dev/null @@ -1,17 +0,0 @@ -# managed by Ansible -{% import 'macros.j2' as macros with context %} - -{% call(h) macros.loop_valid_hosts("all") %} -{% set command = "pgrep wg && ! ping -c 1 -w 1 %s" % h.__ip.external %} -Match originalHost {{ h.inventory_hostname }} exec "{{ command }}" - HostName {{ h.__ip.internal }} -{% if h.ansible_port is defined %} - Port {{ h.ansible_port }} -{% endif %} -Match originalHost {{ h.inventory_hostname }} - HostName {{ h.__ip.external }} -{% if h.ansible_port is defined %} - Port {{ h.ansible_port }} -{% endif %} - -{% endcall %} diff --git a/roles/workstation/templates/xorg-intel.conf b/roles/workstation/templates/xorg-intel.conf deleted file mode 100644 index 5d73c65..0000000 --- a/roles/workstation/templates/xorg-intel.conf +++ /dev/null @@ -1,9 +0,0 @@ - -# disable tearscreen for Xenocara on OpenBSD -# managed by Ansible - -Section "Device" - Identifier "drm" - Driver "intel" - Option "TearFree" "true" -EndSection |