diff options
Diffstat (limited to 'roles/_workstation/apm')
-rw-r--r-- | roles/_workstation/apm/files/hibernate | 6 | ||||
-rw-r--r-- | roles/_workstation/apm/files/resume | 17 | ||||
-rw-r--r-- | roles/_workstation/apm/files/suspend | 6 | ||||
-rw-r--r-- | roles/_workstation/apm/tasks/main.yml | 21 |
4 files changed, 50 insertions, 0 deletions
diff --git a/roles/_workstation/apm/files/hibernate b/roles/_workstation/apm/files/hibernate new file mode 100644 index 0000000..c625aee --- /dev/null +++ b/roles/_workstation/apm/files/hibernate @@ -0,0 +1,6 @@ +#!/bin/sh +# Managed by Ansible + +set -x -e + +pkill -USR1 xidle diff --git a/roles/_workstation/apm/files/resume b/roles/_workstation/apm/files/resume new file mode 100644 index 0000000..686f7e1 --- /dev/null +++ b/roles/_workstation/apm/files/resume @@ -0,0 +1,17 @@ +#!/bin/sh +# Managed by Ansible + +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/apm/files/suspend b/roles/_workstation/apm/files/suspend new file mode 100644 index 0000000..c625aee --- /dev/null +++ b/roles/_workstation/apm/files/suspend @@ -0,0 +1,6 @@ +#!/bin/sh +# Managed by Ansible + +set -x -e + +pkill -USR1 xidle diff --git a/roles/_workstation/apm/tasks/main.yml b/roles/_workstation/apm/tasks/main.yml new file mode 100644 index 0000000..72c5d2a --- /dev/null +++ b/roles/_workstation/apm/tasks/main.yml @@ -0,0 +1,21 @@ +--- + +- name: create apm configuration directory + ansible.builtin.file: + path: "{{ apm_configuration_dir }}" + state: directory + owner: 0 + group: 0 + mode: 0755 + +- name: copy apm configurations + ansible.builtin.copy: + src: "{{ item }}" + dest: "{{ apm_configuration_dir }}/{{ item }}" + mode: 0755 + owner: 0 + group: 0 + loop: + - hibernate + - suspend + - resume |