diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-03-01 22:21:44 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-03-01 22:21:44 +0100 |
| commit | 46c7b9801763119212bf1b4628ec812180a85f2f (patch) | |
| tree | 5f9ca5aad69e1dfbed5a2abc2e97af3a63fd673b | |
| parent | 0cce2285d5bee1e53c58f32b33af8d7e351ee6d7 (diff) | |
Remove reboot tasks as they are not necessary
The reboot also makes the testing quite unstable, and they don't have a
lot of added benefits, removing them for now
| -rw-r--r-- | roles/ddcutil/handlers/main.yml | 5 | ||||
| -rw-r--r-- | roles/ddcutil/tasks/main.yml | 1 | ||||
| -rw-r--r-- | roles/gnome/handlers/main.yml | 5 | ||||
| -rw-r--r-- | roles/gnome/tasks/install-archlinux.yml | 1 | ||||
| -rw-r--r-- | roles/gnome/tasks/install-debian.yml | 1 | ||||
| -rw-r--r-- | roles/nvidia_gtx1060/handlers/main.yml | 5 | ||||
| -rw-r--r-- | roles/nvidia_gtx1060/tasks/install-archlinux.yml | 2 |
7 files changed, 0 insertions, 20 deletions
diff --git a/roles/ddcutil/handlers/main.yml b/roles/ddcutil/handlers/main.yml index 26c67998..ed0ffa85 100644 --- a/roles/ddcutil/handlers/main.yml +++ b/roles/ddcutil/handlers/main.yml @@ -4,8 +4,3 @@ ansible.builtin.command: cmd: "udevadm control --reload-rules" changed_when: true - -- name: "Reboot" - become: true - ansible.builtin.reboot: - reboot_timeout: 600 diff --git a/roles/ddcutil/tasks/main.yml b/roles/ddcutil/tasks/main.yml index 8b58b09e..ed4dc845 100644 --- a/roles/ddcutil/tasks/main.yml +++ b/roles/ddcutil/tasks/main.yml @@ -35,4 +35,3 @@ KERNEL=="i2c-[0-9]*", GROUP="i2c", MODE="0660" notify: - "Reload rules" - - "Reboot" diff --git a/roles/gnome/handlers/main.yml b/roles/gnome/handlers/main.yml deleted file mode 100644 index 7cefa529..00000000 --- a/roles/gnome/handlers/main.yml +++ /dev/null @@ -1,5 +0,0 @@ ---- -- name: "Reboot" - become: true - ansible.builtin.reboot: - reboot_timeout: 600 diff --git a/roles/gnome/tasks/install-archlinux.yml b/roles/gnome/tasks/install-archlinux.yml index b0f683bd..824f314e 100644 --- a/roles/gnome/tasks/install-archlinux.yml +++ b/roles/gnome/tasks/install-archlinux.yml @@ -4,7 +4,6 @@ ansible.builtin.package: name: "{{ gnome_packages }}" state: "present" - notify: "Reboot" - name: "Enable GDM display manager" become: true diff --git a/roles/gnome/tasks/install-debian.yml b/roles/gnome/tasks/install-debian.yml index 7481d04d..34369156 100644 --- a/roles/gnome/tasks/install-debian.yml +++ b/roles/gnome/tasks/install-debian.yml @@ -5,7 +5,6 @@ name: "{{ gnome_packages }}" state: "present" install_recommends: false - notify: "Reboot" tags: # NOTE: the gnome-core packages resinstalls the avahi packages # Disabling the idemopotence test to prevent always reporting changed diff --git a/roles/nvidia_gtx1060/handlers/main.yml b/roles/nvidia_gtx1060/handlers/main.yml index 58b9b02c..67408c79 100644 --- a/roles/nvidia_gtx1060/handlers/main.yml +++ b/roles/nvidia_gtx1060/handlers/main.yml @@ -4,8 +4,3 @@ ansible.builtin.command: cmd: "mkinitcpio -P" changed_when: true - -- name: "Reboot" - become: true - ansible.builtin.reboot: - reboot_timeout: 600 diff --git a/roles/nvidia_gtx1060/tasks/install-archlinux.yml b/roles/nvidia_gtx1060/tasks/install-archlinux.yml index 1105135e..73dd7f67 100644 --- a/roles/nvidia_gtx1060/tasks/install-archlinux.yml +++ b/roles/nvidia_gtx1060/tasks/install-archlinux.yml @@ -21,7 +21,6 @@ mode: "0644" notify: - "Rebuild initramfs" - - "Reboot" tags: # Since the /etc/mkinitcpio isn't available on the docker container # Ignore this for testing, @@ -53,7 +52,6 @@ line: "MODULES=({{ all_modules | join(' ') }})" notify: - "Rebuild initramfs" - - "Reboot" tags: # Since the /etc/mkinitcpio isn't available on the docker container # Ignore this for testing, |
