Compare commits
No commits in common. "master" and "v0.02" have entirely different histories.
@ -91,9 +91,9 @@
|
||||
gather_facts: false
|
||||
|
||||
tasks:
|
||||
- name: Package procps-ng
|
||||
- name: Packages openssh-server, python3-policycoreutils
|
||||
ansible.builtin.dnf:
|
||||
name: procps-ng
|
||||
name: ['openssh-server', 'python3-policycoreutils']
|
||||
state: present
|
||||
|
||||
- name: systemd PID
|
||||
|
||||
@ -9,7 +9,7 @@ driver:
|
||||
ansible_connection: docker
|
||||
platforms:
|
||||
- name: instance
|
||||
image: geerlingguy/docker-${MOLECULE_DISTRO:-rockylinux9}-ansible:latest
|
||||
image: geerlingguy/docker-rockylinux9-ansible:latest
|
||||
command: "/sbin/init"
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
|
||||
@ -98,9 +98,9 @@
|
||||
gather_facts: false
|
||||
|
||||
tasks:
|
||||
- name: Package procps-ng
|
||||
- name: Packages openssh-server, python3-policycoreutils
|
||||
ansible.builtin.dnf:
|
||||
name: procps-ng
|
||||
name: ['openssh-server', 'python3-policycoreutils']
|
||||
state: present
|
||||
|
||||
- name: systemd PID
|
||||
|
||||
@ -1,17 +1,8 @@
|
||||
- import_tasks: include-vars.yml
|
||||
|
||||
- name: Install podman, podman networking plugins, and python support packages
|
||||
vars:
|
||||
dnf_packages:
|
||||
- 'openssh-server'
|
||||
- 'podman'
|
||||
- 'podman-plugins'
|
||||
- 'systemd-container'
|
||||
- 'containernetworking-plugins'
|
||||
- 'python3-pip'
|
||||
- 'python3-policycoreutils'
|
||||
dnf:
|
||||
name: "{{ dnf_packages }}"
|
||||
name: ['podman', 'containernetworking-plugins', 'podman-plugins', 'python3-pip', 'systemd-container']
|
||||
state: present
|
||||
|
||||
- name: Install podman-compose pip Package
|
||||
@ -30,7 +21,6 @@
|
||||
- "{{ service_users }}"
|
||||
|
||||
- name: Create service folders
|
||||
become: yes
|
||||
become_user: "{{ item.0.name }}"
|
||||
file:
|
||||
path: "/home/{{ item.0.name }}/{{ item.1 }}"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user