Skip to content

Instantly share code, notes, and snippets.

@AntelopeSalad
Last active August 29, 2015 14:01
Show Gist options
  • Save AntelopeSalad/d9a4c92805b478323bfc to your computer and use it in GitHub Desktop.
Save AntelopeSalad/d9a4c92805b478323bfc to your computer and use it in GitHub Desktop.
$ mkdir mybook && cd mybook && mkdir -p roles/common/tasks && mkdir -p roles/common/files && wget https://gist.github.com/AntelopeSalad/d9a4c92805b478323bfc/raw/site.yml && cd roles/common/tasks && wget https://gist.github.com/AntelopeSalad/d9a4c92805b478323bfc/raw/main.yml && cd ../files && wget https://gist.github.com/AntelopeSalad/d9a4c92805b…
# mybook/roles/common/files/foo
foobar
# mybook/roles/common/tasks/main.yml
- name: ensure foo is copied
copy: src=foo dest=~/foo
# mybook/site.yml
- hosts: all
roles:
- { role: common, tags: common }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment