aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/roles/common
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common')
-rw-r--r--roles/common/handlers/main.yml24
-rw-r--r--roles/common/tasks/main.yml17
-rw-r--r--roles/common/tasks/tool.yml8
3 files changed, 0 insertions, 49 deletions
diff --git a/roles/common/handlers/main.yml b/roles/common/handlers/main.yml
deleted file mode 100644
index 4942957..0000000
--- a/roles/common/handlers/main.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-- name: Reboot
- ansible.builtin.reboot:
- args:
- # On my trusty old Raspberry Pi 1 Model B+, /proc/sys/kernel/random/boot_id
- # can sometimes stay the same between reboots. Apparently, not enough
- # entropy or something.
- boot_time_command: uptime -s
- # Another option is `who -s`. This option requires Ansible 2.10 or later.
-
- # 5 minutes is plenty.
- reboot_timeout: 300
- # Don't reboot yourself accidentally:
- when: 'ansible_env["SSH_CLIENT"].split()[0] not in ansible_all_ipv4_addresses'
- become: true
- listen: reboot
-
-- name: Wait for connectivity
- # One of the nodes is the VPN server connecting all the other nodes, wait
- # until all of them are back up:
- ansible.builtin.wait_for_connection:
- args:
- # 5 minutes is plenty.
- timeout: 300
- listen: reboot
diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml
deleted file mode 100644
index fb0eaed..0000000
--- a/roles/common/tasks/main.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-- name: Check available tools
- ansible.builtin.include_tasks: tool.yml
- loop:
- - apt
- - docker
- - flatpak
- - pacman
- - rate-mirrors
- - snap
- - vagrant
- - yay
-
-- name: Check if /etc is versioned
- become: true
- ansible.builtin.stat:
- path: /etc/.git/config
- register: etc_versioned
diff --git a/roles/common/tasks/tool.yml b/roles/common/tasks/tool.yml
deleted file mode 100644
index 48d0acc..0000000
--- a/roles/common/tasks/tool.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-- name: "Check for {{ item }}"
- ansible.builtin.command: "{{ item }} --version"
- register: cmd_result
- changed_when: false
- failed_when: false
-
-- name: "Set fact about {{ item }}"
- ansible.builtin.set_fact: "has_{{ item | replace('-', '_') }}={{ cmd_result.rc == 0 }}"