bitwarden

This commit is contained in:
jaydee 2024-10-30 12:14:02 +01:00
parent bc1d301892
commit 50fd53aadd

View File

@ -30,7 +30,14 @@
owner: root owner: root
when: inventory_hostname not in groups['nas'] and inventory_hostname not in groups['router'] when: inventory_hostname not in groups['nas'] and inventory_hostname not in groups['router']
become: "{{ 'no' if inventory_hostname in groups['nas'] else 'yes' }}" become: "{{ 'no' if inventory_hostname in groups['nas'] else 'yes' }}"
- name: Upload service script config
ansible.builtin.copy:
src: scripts/mqtt_srv.cfg
dest: /etc/mqtt_srv
mode: '755'
owner: root
when: inventory_hostname not in groups['nas'] and inventory_hostname not in groups['router']
become: "{{ 'no' if inventory_hostname in groups['nas'] else 'yes' }}"
- name: Upload service script1 - name: Upload service script1
ansible.builtin.copy: ansible.builtin.copy:
src: scripts/mqtt_srv.sh src: scripts/mqtt_srv.sh