diff --git a/playbooks/servicetag.yaml b/playbooks/servicetag.yaml new file mode 100644 index 0000000..f0ab896 --- /dev/null +++ b/playbooks/servicetag.yaml @@ -0,0 +1,21 @@ +- name: Service Tag Retriever + hosts: proxmox + tasks: + - name: Confirm directory structure + ansible.builtin.file: + path: /opt/ansible/ + state: directory + - name: Ensure service tag script is present + ansible.builtin.copy: + src: /root/ansible/files/servicetag.sh + dest: /opt/ansible/servicetag.sh + mode: '0755' + force: yes + - name: Execute service tag script + ansible.builtin.command: + chdir: /opt/ansible + cmd: ./servicetag.sh + register: stdout + - name: Display service tags + debug: + var=stdout.stdout