We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4ef150 commit dcac6f6Copy full SHA for dcac6f6
playbooks/baseline/config.yml
@@ -24,6 +24,13 @@
24
pip_install_packages:
25
- name: jsondiff
26
27
+ - name: IPv6 is disabled at kernel boot
28
+ ansible.builtin.lineinfile:
29
+ path: /etc/default/grub
30
+ line: 'GRUB_CMDLINE_LINUX="ipv6.disable=1"'
31
+ regex: '^GRUB_CMDLINE_LINUX="ipv6.disable="'
32
+ notify: Update Grub
33
+
34
- name: IPv6 is disabled
35
ansible.builtin.import_role:
36
name: ypsman.ipv6_disable
@@ -45,3 +52,8 @@
45
52
- hostname: 3.ubuntu.pool.ntp.org
46
53
pool: true
47
54
iburst: true
55
56
+ handlers:
57
+ - name: Update Grub
58
+ become: true
59
+ ansible.builtin.command: update-grub
0 commit comments