Changed package manager to generic

This commit is contained in:
akshun
2023-11-26 04:40:49 +05:30
parent c00f28ef5b
commit 6918e9d2d9
2 changed files with 2 additions and 4 deletions

View File

@@ -7,7 +7,6 @@
private: no
tasks:
- name: Install a package
apt:
update_cache: true
ansible.builtin.package:
name: "{{ package_name }}"
state: present

View File

@@ -7,7 +7,6 @@
private: no
tasks:
- name: Remove a package
apt:
ansible.builtin.package:
name: "{{ package_name }}"
state: absent
autoremove: true