Remove playbook in favour of modify-package.yml

This commit is contained in:
2023-11-26 20:28:46 +05:30
parent 8767eadabb
commit aa095f7d6b
2 changed files with 0 additions and 24 deletions

View File

@@ -1,12 +0,0 @@
---
- hosts: all
become: true
vars_prompt:
- name: package_name
prompt: "Enter the name of package to be installed"
private: no
tasks:
- name: Install a package
ansible.builtin.package:
name: "{{ package_name }}"
state: present

View File

@@ -1,12 +0,0 @@
---
- hosts: all
become: true
vars_prompt:
- name: package_name
prompt: "Enter the name of package to be removed"
private: no
tasks:
- name: Remove a package
ansible.builtin.package:
name: "{{ package_name }}"
state: absent