Skip to content

Commit 947518e

Browse files
committed
Merge stackhpc/zed into stackhpc/2023.1
2 parents b468bbe + 07fdce6 commit 947518e

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

etc/kayobe/ansible/cis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
- include_role:
3636
name: ansible-lockdown.rhel9_cis
3737
when: ansible_facts.os_family == 'RedHat' and ansible_facts.distribution_major_version == '9'
38-
tags: always
3938

4039
- include_role:
4140
name: ansible-lockdown.ubuntu22_cis
4241
when: ansible_facts.distribution == 'Ubuntu' and ansible_facts.distribution_major_version == '22'
43-
tags: always

etc/kayobe/ansible/reboot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,19 @@
1010
ansible_python_interpreter: "/usr/bin/python3"
1111
tags:
1212
- reboot
13+
vars:
14+
reboot_timeout_s: "{{ 20 * 60 }}"
1315
tasks:
1416
- name: Reboot and wait
1517
become: true
1618
reboot:
19+
reboot_timeout: "{{ reboot_timeout_s }}"
20+
search_paths:
21+
# Systems running molly-guard hang waiting for confirmation before rebooting without this.
22+
- "/lib/molly-guard"
23+
# Default list:
24+
- "/sbin"
25+
- "/bin"
26+
- "/usr/sbin"
27+
- "/usr/bin"
28+
- "/usr/local/sbin"

etc/kayobe/ansible/ubuntu-upgrade.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@
4040
reboot:
4141
reboot_timeout: "{{ reboot_timeout_s }}"
4242
connect_timeout: 600
43+
search_paths:
44+
# Systems running molly-guard hang waiting for confirmation before rebooting without this.
45+
- "/lib/molly-guard"
46+
# Default list:
47+
- "/sbin"
48+
- "/bin"
49+
- "/usr/sbin"
50+
- "/usr/bin"
51+
- "/usr/local/sbin"
4352
become: true
4453
when: file_status.stat.exists
4554

@@ -101,6 +110,15 @@
101110
reboot:
102111
reboot_timeout: "{{ reboot_timeout_s }}"
103112
connect_timeout: 600
113+
search_paths:
114+
# Systems running molly-guard hang waiting for confirmation before rebooting without this.
115+
- "/lib/molly-guard"
116+
# Default list:
117+
- "/sbin"
118+
- "/bin"
119+
- "/usr/sbin"
120+
- "/usr/bin"
121+
- "/usr/local/sbin"
104122
become: true
105123

106124
- name: Update distribution facts

terraform/aio/vm.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ variable "aio_vm_subnet" {
3535

3636
variable "aio_vm_volume_size" {
3737
type = number
38-
default = 35
38+
default = 40
3939
}
4040

4141
variable "aio_vm_tags" {

0 commit comments

Comments
 (0)