final touches

This commit is contained in:
Chris Hammer 2024-07-10 22:10:50 -04:00
parent e176c76638
commit 4bc64db2db
3 changed files with 10 additions and 8 deletions

View File

@ -23,7 +23,7 @@
ansible.builtin.import_playbook: rhc.rear.rear_backup ansible.builtin.import_playbook: rhc.rear.rear_backup
when: when:
- bigboot_execute_bigboot | bool - bigboot_execute_bigboot | bool
- not bigboot_skip_rear_backup | bool # - not bigboot_skip_rear_backup | bool
- name: Perform logical volume and boot parition resizing as needed - name: Perform logical volume and boot parition resizing as needed
@ -32,6 +32,9 @@
gather_facts: true gather_facts: true
strategy: free strategy: free
vars_files:
- bigboot_vars.yml
tasks: tasks:
- name: Perform filesystem check prior to Bigboot execution - name: Perform filesystem check prior to Bigboot execution
when: when:
@ -88,3 +91,6 @@
state: started state: started
enabled: true enabled: true
loop: "{{ bigboot_systemd_disabled_services }}" loop: "{{ bigboot_systemd_disabled_services }}"
when:
- bigboot_systemd_disabled_services is defined
- bigboot_systemd_disabled_services | length > 0

View File

@ -1,10 +1,4 @@
--- ---
roles:
- name: autofsck
src: https://gitea.thezengarden.net/ansible_roles/autofsck.git
scm: git
version: main
collections: collections:
# - name: infra.lvm_snapshots.shrink_lv # - name: infra.lvm_snapshots.shrink_lv
# source: https://github.com/redhat-cop/infra.lvm_snapshots.git # source: https://github.com/redhat-cop/infra.lvm_snapshots.git

View File

@ -2,6 +2,8 @@
bigboot_size_target: 1G bigboot_size_target: 1G
ansible_ssh_retries: 10 ansible_ssh_retries: 10
bigboot_skip_rear_backup: false
# Max value in minutes for the timeout threshold: # Max value in minutes for the timeout threshold:
bigboot_service_max_timeout: 2 bigboot_service_max_timeout: 2
@ -11,5 +13,5 @@ bigboot_protected_services:
- user@0.service - user@0.service
- network - network
- rhnsd.service - rhnsd.service
# - rhnsd - rhnsd
- boksm.service - boksm.service