Commit 42f4a579 by ansible

no message

1 parent f56e8129
Showing with 18 additions and 5 deletions
- name: Move MQTT to Working Folder
command: cp /tmp/source/message.3.0.2.tar.gz /opt/stack/message.3.0.2.tar.gz
- name: Extract MQTT
command: tar -zxvf /opt/stack/message.3.0.2.tar.gz -C /opt/stack/
\ No newline at end of file
- name: Install MQTT to Working Folder
unarchive:
src: /opt/stack/message.3.0.2.tar.gz
dest: /opt/stack
remote_src: yes
group: wdadmin
owner: wdadmin
mode: 0755
- file:
path: '/opt/stack/{{ item.dir }}'
group: wdadmin
owner: wdadmin
mode: 0755
state: directory
recurse: yes
with_items:
- { dir: 'mqtt' }
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!