Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

ansible / common-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
  • common-playbook
  • roles
  • loadstack
  • tasks
  • wdchat.yml
  • ansible's avatar
    no message · 90e3b6ff
    ansible committed Apr 19, 2018
    90e3b6ff
wdchat.yml 421 Bytes
BlameHistoryPermalink
Edit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
- git:
        repo: 'https://ansible@example.com/ansible/software.git'
        dest: /tmp/source

- copy:
        src: /tmp/source
        dest: /tmp
        mode: 0755
        
- git:
        repo: 'https://ansible@example.com/ansible/software-configuration.git'
        dest: /tmp/configuration
        version: develop
        
- copy:
        src: /tmp/configuration
        dest: /tmp
        mode: 0711