diff --git a/meta/collection-requirements.yml b/meta/collection-requirements.yml index 0e6f8ea..26e594f 100644 --- a/meta/collection-requirements.yml +++ b/meta/collection-requirements.yml @@ -2,4 +2,5 @@ --- collections: - ansible.posix + - community.general - fedora.linux_system_roles diff --git a/tasks/setup-zypper.yml b/tasks/setup-zypper.yml new file mode 100644 index 0000000..7ac26ef --- /dev/null +++ b/tasks/setup-zypper.yml @@ -0,0 +1,18 @@ +--- +- name: If choosing custom package set, ensure minimal cockpit is included + set_fact: + cockpit_packages: "{{ cockpit_packages + __cockpit_packages_minimal + if cockpit_packages not in __cockpit_package_types + else cockpit_packages }}" + when: cockpit_packages is defined + +- name: Ensure Cockpit Web Console packages are installed. + community.general.zypper: + name: "{{ __cockpit_packages[cockpit_packages] + if cockpit_packages in __cockpit_package_types + else cockpit_packages }}" + state: present + +- name: Reboot system + reboot: + when: ansible_distribution == 'ALP-Dolomite' diff --git a/vars/ALP-Dolomite.yml b/vars/ALP-Dolomite.yml new file mode 100644 index 0000000..d179954 --- /dev/null +++ b/vars/ALP-Dolomite.yml @@ -0,0 +1,22 @@ +--- +__cockpit_packages_minimal: + - cockpit-system + - cockpit-ws +__cockpit_packages_default: + - cockpit-bridge + - cockpit-networkmanager + - cockpit-selinux + - cockpit-storaged +__cockpit_packages_full: + - cockpit-bridge + - cockpit-machines + - cockpit-networkmanager + - cockpit-podman + - cockpit-selinux + - cockpit-storaged + - cockpit-tukit +__cockpit_packages: + minimal: "{{ __cockpit_packages_minimal }}" + default: "{{ __cockpit_packages_minimal + __cockpit_packages_default }}" + full: "{{ __cockpit_packages_minimal + __cockpit_packages_default + + __cockpit_packages_full }}"