Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ansible / dma-playbook

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dma-playbook
  • roles
  • install
  • tasks
  • mqtt.yml
  • ansible's avatar
    no message · 42f4a579
    ansible committed Apr 25, 2018
    42f4a579 Browse Files
mqtt.yml 416 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
- 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' }