Created
July 9, 2014 07:39
-
-
Save yuuichi-fujioka/566a5a3ee050e30f9023 to your computer and use it in GitHub Desktop.
this makes skelton for ansible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir host_vars | |
mkdir group_vars | |
mkdir -p roles/common/files | |
mkdir -p roles/common/handlers | |
mkdir -p roles/common/meta | |
mkdir -p roles/common/tasks | |
mkdir -p roles/common/templates | |
mkdir -p roles/common/vars | |
touch hosts | |
touch host_vars/host1 | |
touch group_vars/group1 | |
touch roles/common/tasks/main.yml | |
touch roles/common/handlers/main.yml | |
touch roles/common/templates/foo.conf | |
touch roles/common/files/bar.txt | |
touch roles/common/vars/main.yml | |
touch roles/common/meta/main.yml | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment