gitextract_jrxe4k79/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── README.md ├── jboss-standalone/ │ ├── LICENSE.md │ ├── README.md │ ├── demo-aws-launch.yml │ ├── deploy-application.yml │ ├── group_vars/ │ │ └── all │ ├── hosts │ ├── roles/ │ │ ├── java-app/ │ │ │ ├── files/ │ │ │ │ ├── jboss-helloworld.war │ │ │ │ └── ticket-monster.war │ │ │ └── tasks/ │ │ │ └── main.yml │ │ └── jboss-standalone/ │ │ ├── files/ │ │ │ └── jboss-as-standalone.sh │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ ├── iptables-save │ │ └── standalone.xml │ └── site.yml ├── lamp_haproxy/ │ ├── LICENSE.md │ ├── README.md │ ├── aws/ │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── demo-aws-launch.yml │ │ ├── group_vars/ │ │ │ ├── all │ │ │ ├── tag_ansible_group_dbservers │ │ │ ├── tag_ansible_group_lbservers │ │ │ └── tag_ansible_group_webservers │ │ ├── roles/ │ │ │ ├── base-apache/ │ │ │ │ └── tasks/ │ │ │ │ └── main.yml │ │ │ ├── common/ │ │ │ │ ├── files/ │ │ │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ │ │ └── epel.repo │ │ │ │ ├── handlers/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ └── main.yml │ │ │ │ └── templates/ │ │ │ │ ├── iptables.j2 │ │ │ │ └── ntp.conf.j2 │ │ │ ├── db/ │ │ │ │ ├── handlers/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ └── main.yml │ │ │ │ └── templates/ │ │ │ │ └── my.cnf.j2 │ │ │ ├── haproxy/ │ │ │ │ ├── handlers/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ └── main.yml │ │ │ │ └── templates/ │ │ │ │ └── haproxy.cfg.j2 │ │ │ ├── nagios/ │ │ │ │ ├── files/ │ │ │ │ │ ├── ansible-managed-services.cfg │ │ │ │ │ ├── localhost.cfg │ │ │ │ │ └── nagios.cfg │ │ │ │ ├── handlers/ │ │ │ │ │ └── main.yml │ │ │ │ ├── tasks/ │ │ │ │ │ └── main.yml │ │ │ │ └── templates/ │ │ │ │ ├── dbservers.cfg.j2 │ │ │ │ ├── lbservers.cfg.j2 │ │ │ │ └── webservers.cfg.j2 │ │ │ └── web/ │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── rolling_update.yml │ │ └── site.yml │ ├── group_vars/ │ │ ├── all │ │ ├── dbservers │ │ ├── lbservers │ │ └── webservers │ ├── hosts │ ├── provision.yml │ ├── roles/ │ │ ├── base-apache/ │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── common/ │ │ │ ├── files/ │ │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ │ └── epel.repo │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── iptables.j2 │ │ │ └── ntp.conf.j2 │ │ ├── db/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── my.cnf.j2 │ │ ├── haproxy/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── haproxy.cfg.j2 │ │ ├── nagios/ │ │ │ ├── files/ │ │ │ │ ├── ansible-managed-services.cfg │ │ │ │ ├── localhost.cfg │ │ │ │ └── nagios.cfg │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── dbservers.cfg.j2 │ │ │ ├── lbservers.cfg.j2 │ │ │ └── webservers.cfg.j2 │ │ └── web/ │ │ └── tasks/ │ │ └── main.yml │ ├── rolling_update.yml │ └── site.yml ├── lamp_simple/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ ├── all │ │ └── dbservers │ ├── hosts │ ├── roles/ │ │ ├── common/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── ntp.conf.j2 │ │ ├── db/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── my.cnf.j2 │ │ └── web/ │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ ├── copy_code.yml │ │ │ ├── install_httpd.yml │ │ │ └── main.yml │ │ └── templates/ │ │ └── index.php.j2 │ └── site.yml ├── lamp_simple_rhel7/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ ├── all │ │ └── dbservers │ ├── hosts │ ├── roles/ │ │ ├── common/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── ntp.conf.j2 │ │ ├── db/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── my.cnf.j2 │ │ └── web/ │ │ ├── tasks/ │ │ │ ├── copy_code.yml │ │ │ ├── install_httpd.yml │ │ │ └── main.yml │ │ └── templates/ │ │ └── index.php.j2 │ └── site.yml ├── language_features/ │ ├── ansible_pull.yml │ ├── batch_size_control.yml │ ├── cloudformation.yaml │ ├── complex_args.yml │ ├── conditionals_part1.yml │ ├── conditionals_part2.yml │ ├── custom_filters.yml │ ├── delegation.yml │ ├── environment.yml │ ├── eucalyptus-ec2.yml │ ├── file_secontext.yml │ ├── files/ │ │ └── cloudformation-example.json │ ├── filter_plugins/ │ │ └── custom_plugins.py │ ├── get_url.yml │ ├── group_by.yml │ ├── group_commands.yml │ ├── handlers/ │ │ └── handlers.yml │ ├── intermediate_example.yml │ ├── intro_example.yml │ ├── loop_nested.yml │ ├── loop_plugins.yml │ ├── loop_with_items.yml │ ├── mysql.yml │ ├── nested_playbooks.yml │ ├── netscaler.yml │ ├── postgresql.yml │ ├── prompts.yml │ ├── rabbitmq.yml │ ├── register_logic.yml │ ├── roles/ │ │ └── foo/ │ │ ├── files/ │ │ │ └── foo.txt │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ ├── templates/ │ │ │ └── foo.j2 │ │ └── vars/ │ │ └── main.yml │ ├── roletest.yml │ ├── roletest2.yml │ ├── selective_file_sources.yml │ ├── tags.yml │ ├── tasks/ │ │ └── base.yml │ ├── templates/ │ │ ├── custom-filters.j2 │ │ ├── etc_cron.d_ansible-pull.j2 │ │ ├── etc_logrotate.d_ansible-pull.j2 │ │ ├── foo.j2 │ │ └── hostvars.j2 │ ├── upgraded_vars.yml │ ├── user_commands.yml │ ├── vars/ │ │ ├── CentOS.yml │ │ ├── defaults.yml │ │ └── external_vars.yml │ └── zfs.yml ├── mongodb/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ └── all │ ├── hosts │ ├── playbooks/ │ │ └── testsharding.yml │ ├── roles/ │ │ ├── common/ │ │ │ ├── files/ │ │ │ │ ├── 10gen.repo.j2 │ │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ │ └── epel.repo.j2 │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── hosts.j2 │ │ │ └── iptables.j2 │ │ ├── mongoc/ │ │ │ ├── files/ │ │ │ │ └── secret │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── adduser.j2 │ │ │ ├── mongoc.conf.j2 │ │ │ └── mongoc.j2 │ │ ├── mongod/ │ │ │ ├── files/ │ │ │ │ └── secret │ │ │ ├── tasks/ │ │ │ │ ├── main.yml │ │ │ │ └── shards.yml │ │ │ └── templates/ │ │ │ ├── mongod.conf.j2 │ │ │ ├── mongod.j2 │ │ │ ├── repset_init.j2 │ │ │ └── shard_init.j2 │ │ └── mongos/ │ │ ├── files/ │ │ │ └── secret │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ ├── enablesharding.j2 │ │ ├── mongos.conf.j2 │ │ ├── mongos.j2 │ │ └── testsharding.j2 │ └── site.yml ├── phillips_hue/ │ ├── README.md │ ├── ansible.cfg │ ├── ansible_colors.yml │ ├── effect.yml │ ├── hosts │ ├── on_off.yml │ ├── register.yml │ └── username_info.yml ├── rust-module-hello-world/ │ ├── Makefile │ ├── library/ │ │ └── .gitignore │ ├── module-src/ │ │ ├── Cargo.toml │ │ ├── src/ │ │ │ └── main.rs │ │ └── target/ │ │ └── .gitignore │ └── rust.yml ├── tomcat-memcached-failover/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ └── all │ ├── hosts │ ├── roles/ │ │ ├── common/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── iptables.j2 │ │ ├── lb-nginx/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── default.conf.j2 │ │ │ └── nginx.conf.j2 │ │ ├── memcached/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ ├── init.sh.j2 │ │ │ └── memcached.conf.j2 │ │ └── tomcat/ │ │ ├── files/ │ │ │ └── msm-sample-webapp-1.0-SNAPSHOT.war │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ ├── context.xml.j2 │ │ ├── default.j2 │ │ └── server.xml.j2 │ └── site.yml ├── tomcat-standalone/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ └── tomcat-servers │ ├── hosts │ ├── roles/ │ │ ├── selinux/ │ │ │ └── tasks/ │ │ │ └── main.yml │ │ └── tomcat/ │ │ ├── files/ │ │ │ └── tomcat-initscript.sh │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ ├── iptables-save │ │ ├── server.xml │ │ └── tomcat-users.xml │ └── site.yml ├── windows/ │ ├── create-user.yml │ ├── deploy-site.yml │ ├── enable-iis.yml │ ├── files/ │ │ └── helloworld.ps1 │ ├── install-msi.yml │ ├── ping.yml │ ├── run-powershell.yml │ ├── test.yml │ └── wamp_haproxy/ │ ├── demo-aws-wamp-launch.yml │ ├── group_vars/ │ │ ├── all │ │ ├── windows_dbservers │ │ └── windows_webservers │ ├── roles/ │ │ ├── elb/ │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── iis/ │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── mssql/ │ │ │ ├── files/ │ │ │ │ └── create-db.ps1 │ │ │ └── tasks/ │ │ │ └── main.yml │ │ └── web/ │ │ └── tasks/ │ │ └── main.yml │ ├── rolling_update.yml │ └── site.yml ├── wordpress-nginx/ │ ├── LICENSE.md │ ├── README.md │ ├── group_vars/ │ │ └── all │ ├── hosts.example │ ├── roles/ │ │ ├── common/ │ │ │ ├── files/ │ │ │ │ ├── RPM-GPG-KEY-EPEL-6 │ │ │ │ ├── epel.repo │ │ │ │ └── iptables-save │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ └── tasks/ │ │ │ └── main.yml │ │ ├── mysql/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── my.cnf.j2 │ │ ├── nginx/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── default.conf │ │ ├── php-fpm/ │ │ │ ├── handlers/ │ │ │ │ └── main.yml │ │ │ ├── tasks/ │ │ │ │ └── main.yml │ │ │ └── templates/ │ │ │ └── wordpress.conf │ │ └── wordpress/ │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ └── wp-config.php │ └── site.yml └── wordpress-nginx_rhel7/ ├── LICENSE.md ├── README.md ├── group_vars/ │ └── all ├── hosts.example ├── roles/ │ ├── common/ │ │ ├── files/ │ │ │ ├── RPM-GPG-KEY-EPEL-7 │ │ │ ├── RPM-GPG-KEY-NGINX │ │ │ ├── RPM-GPG-KEY-remi │ │ │ ├── epel.repo │ │ │ ├── nginx.repo │ │ │ └── remi.repo │ │ └── tasks/ │ │ └── main.yml │ ├── mariadb/ │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ └── my.cnf.j2 │ ├── nginx/ │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ └── default.conf │ ├── php-fpm/ │ │ ├── handlers/ │ │ │ └── main.yml │ │ ├── tasks/ │ │ │ └── main.yml │ │ └── templates/ │ │ └── wordpress.conf │ └── wordpress/ │ ├── tasks/ │ │ └── main.yml │ └── templates/ │ └── wp-config.php └── site.yml