├── .gitignore ├── AUTHORS ├── Makefile ├── README.md ├── VERSION ├── _template.md ├── de └── .keep ├── en ├── .keep ├── 00_cover │ └── 01_cover.md ├── 01_intro │ └── 00_intro.md ├── 02_basics │ ├── 00_intro.md │ ├── 01_variables_group_all.md │ ├── 02_variables_group_expect.md │ └── 03_command_in_check_mode.md ├── 03_testing │ ├── 00_intro.md │ ├── 01_test-ansible-playbooks.md │ └── 02_test-ansible-roles.md ├── 04_security │ ├── 00_intro.md │ ├── 01_manage-private-data.md │ └── 02_manage-ssh-public-keys.md ├── 05_networking │ ├── 00_intro.md │ ├── 01_dynamic-dns.md │ └── 02_failover-cluster.md ├── 06_helpers │ ├── 00_intro.md │ ├── 01_run-puppet-agent.md │ ├── 02_ansible-cheatsheet.md │ └── 03_quorum.md └── 07_applications │ ├── 00_intro.md │ └── 01_deploy-php-application.md ├── images └── .keep ├── mytemplate.tex └── style ├── github-pandoc.css ├── pan-am.css └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | René Moser 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/_template.md -------------------------------------------------------------------------------- /de/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/00_cover/01_cover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/00_cover/01_cover.md -------------------------------------------------------------------------------- /en/01_intro/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Intro 4 | -------------------------------------------------------------------------------- /en/02_basics/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Basics 4 | -------------------------------------------------------------------------------- /en/02_basics/01_variables_group_all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/02_basics/01_variables_group_all.md -------------------------------------------------------------------------------- /en/02_basics/02_variables_group_expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/02_basics/02_variables_group_expect.md -------------------------------------------------------------------------------- /en/02_basics/03_command_in_check_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/02_basics/03_command_in_check_mode.md -------------------------------------------------------------------------------- /en/03_testing/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Testing 4 | -------------------------------------------------------------------------------- /en/03_testing/01_test-ansible-playbooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/03_testing/01_test-ansible-playbooks.md -------------------------------------------------------------------------------- /en/03_testing/02_test-ansible-roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/03_testing/02_test-ansible-roles.md -------------------------------------------------------------------------------- /en/04_security/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Secuirty and Privacy 4 | -------------------------------------------------------------------------------- /en/04_security/01_manage-private-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/04_security/01_manage-private-data.md -------------------------------------------------------------------------------- /en/04_security/02_manage-ssh-public-keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/04_security/02_manage-ssh-public-keys.md -------------------------------------------------------------------------------- /en/05_networking/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Networking 4 | -------------------------------------------------------------------------------- /en/05_networking/01_dynamic-dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/05_networking/01_dynamic-dns.md -------------------------------------------------------------------------------- /en/05_networking/02_failover-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/05_networking/02_failover-cluster.md -------------------------------------------------------------------------------- /en/06_helpers/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Helpers and Tools 4 | -------------------------------------------------------------------------------- /en/06_helpers/01_run-puppet-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/06_helpers/01_run-puppet-agent.md -------------------------------------------------------------------------------- /en/06_helpers/02_ansible-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/06_helpers/02_ansible-cheatsheet.md -------------------------------------------------------------------------------- /en/06_helpers/03_quorum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/06_helpers/03_quorum.md -------------------------------------------------------------------------------- /en/07_applications/00_intro.md: -------------------------------------------------------------------------------- 1 | \newpage 2 | 3 | # Application and Deployments 4 | -------------------------------------------------------------------------------- /en/07_applications/01_deploy-php-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/en/07_applications/01_deploy-php-application.md -------------------------------------------------------------------------------- /images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mytemplate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/mytemplate.tex -------------------------------------------------------------------------------- /style/github-pandoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/style/github-pandoc.css -------------------------------------------------------------------------------- /style/pan-am.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/style/pan-am.css -------------------------------------------------------------------------------- /style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/resmo/ansiblecookbook/HEAD/style/style.css --------------------------------------------------------------------------------