├── March2025.txt ├── README.md ├── ansible.cfg ├── aug25.txt ├── countdown ├── custom.fact ├── enforce-selinux-simplified.yml ├── enforce-selinux.yml ├── gather_facts.yaml ├── history.txt ├── historyMAY24.txt ├── install_and_start_httpt.yaml ├── jan25.txt ├── june25.txt ├── loop_on_vars.yaml ├── loop_packages.yaml ├── multi_play.yaml ├── myvars.yaml ├── new_facts.yaml ├── nov2024.txt ├── old_facts.yaml ├── playbook_with_errors.yaml ├── register.yaml ├── run_and_test_httpd.yaml ├── use_custom_facts.yaml ├── using_handlers.yaml ├── variables_example.yaml ├── vars └── users-list ├── vars_file.yaml ├── when_complex.yaml ├── when_register.yaml └── when_test.yaml /March2025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/March2025.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ansiblefundamentals 2 | -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/ansible.cfg -------------------------------------------------------------------------------- /aug25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/aug25.txt -------------------------------------------------------------------------------- /countdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/countdown -------------------------------------------------------------------------------- /custom.fact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/custom.fact -------------------------------------------------------------------------------- /enforce-selinux-simplified.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/enforce-selinux-simplified.yml -------------------------------------------------------------------------------- /enforce-selinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/enforce-selinux.yml -------------------------------------------------------------------------------- /gather_facts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/gather_facts.yaml -------------------------------------------------------------------------------- /history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/history.txt -------------------------------------------------------------------------------- /historyMAY24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/historyMAY24.txt -------------------------------------------------------------------------------- /install_and_start_httpt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/install_and_start_httpt.yaml -------------------------------------------------------------------------------- /jan25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/jan25.txt -------------------------------------------------------------------------------- /june25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/june25.txt -------------------------------------------------------------------------------- /loop_on_vars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/loop_on_vars.yaml -------------------------------------------------------------------------------- /loop_packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/loop_packages.yaml -------------------------------------------------------------------------------- /multi_play.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/multi_play.yaml -------------------------------------------------------------------------------- /myvars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/myvars.yaml -------------------------------------------------------------------------------- /new_facts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/new_facts.yaml -------------------------------------------------------------------------------- /nov2024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/nov2024.txt -------------------------------------------------------------------------------- /old_facts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/old_facts.yaml -------------------------------------------------------------------------------- /playbook_with_errors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/playbook_with_errors.yaml -------------------------------------------------------------------------------- /register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/register.yaml -------------------------------------------------------------------------------- /run_and_test_httpd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/run_and_test_httpd.yaml -------------------------------------------------------------------------------- /use_custom_facts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/use_custom_facts.yaml -------------------------------------------------------------------------------- /using_handlers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/using_handlers.yaml -------------------------------------------------------------------------------- /variables_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/variables_example.yaml -------------------------------------------------------------------------------- /vars/users-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/vars/users-list -------------------------------------------------------------------------------- /vars_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/vars_file.yaml -------------------------------------------------------------------------------- /when_complex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/when_complex.yaml -------------------------------------------------------------------------------- /when_register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/when_register.yaml -------------------------------------------------------------------------------- /when_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandervanvugt/ansiblefundamentals/HEAD/when_test.yaml --------------------------------------------------------------------------------