├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── iocage.py └── test ├── .ansible-lint ├── .yamllint ├── ansible.cfg.example ├── configure.yml ├── extra_vars ├── test_31-debug-n2.yml ├── test_31-debug.yml ├── test_32-debug.yml ├── test_X-debug-n1.yml ├── test_jail-exec_cmd.yml └── test_jail-set_properties.yml ├── hosts.example ├── iocage.py ├── iocage_test.yml ├── tasks ├── absent_absent.yml ├── absent_restart_crash.yml ├── absent_start_crash.yml ├── absent_stop_crash.yml ├── base_clone.yml ├── base_create.yml ├── base_exists.yml ├── base_set.yml ├── base_set_template_no.yml ├── custom_stats_crash.yml ├── custom_stats_end.yml ├── custom_stats_fail.yml ├── custom_stats_pass.yml ├── custom_stats_start.yml ├── facts.yml ├── fetch.yml ├── group_absent.yml ├── group_all.yml ├── group_base.yml ├── group_jail.yml ├── group_present_absent_restart.yml ├── group_present_start_exec_set1.yml ├── group_setup.yml ├── group_start_restart_stop.yml ├── group_start_restart_stop_crash.yml ├── group_template.yml ├── group_test.yml ├── jail_absent.yml ├── jail_restore.yml ├── misc_get_all.yml ├── sanity.yml ├── template_create.yml ├── template_start_crash.yml ├── template_start_force.yml ├── template_stop.yml ├── test_absent.yml ├── test_absent2.yml ├── test_clone.yml ├── test_exec.yml ├── test_pkg.yml ├── test_pkg_crash.yml ├── test_present.yml ├── test_restart.yml ├── test_restart_crash.yml ├── test_set.yml ├── test_start.yml ├── test_start2.yml ├── test_start3.yml ├── test_start_crash.yml ├── test_stop.yml └── test_stop_crash.yml ├── templates ├── command.j2 ├── command_crash.j2 ├── group.j2 ├── group_all.j2 └── iocage_test.yml.j2 └── vars ├── groups.d ├── group_absent.yml ├── group_all.yml ├── group_base.yml ├── group_jail.yml ├── group_present_absent_restart.yml ├── group_present_start_exec_set1.yml ├── group_setup.yml ├── group_start_restart_stop.yml ├── group_start_restart_stop_crash.yml ├── group_template.yml └── group_test.yml └── tests.d ├── absent_absent.yml ├── absent_restart_crash.yml ├── absent_start_crash.yml ├── absent_stop_crash.yml ├── base_clone.yml ├── base_create.yml ├── base_exists.yml ├── base_set.yml ├── base_set_template_no.yml ├── facts.yml ├── fetch.yml ├── jail_absent.yml ├── jail_restore.yml ├── template_create.yml ├── template_start.yml ├── template_stop.yml ├── test_absent.yml ├── test_absent2.yml ├── test_clone.yml ├── test_exec.yml ├── test_pkg.yml ├── test_pkg_crash.yml ├── test_present.yml ├── test_restart.yml ├── test_restart_crash.yml ├── test_set.yml ├── test_start.yml ├── test_start2.yml ├── test_start3.yml ├── test_start_crash.yml ├── test_stop.yml └── test_stop_crash.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .*~ 2 | *~ 3 | .*.sw* 4 | collections 5 | hosts 6 | ansible.cfg 7 | TESTING 8 | TODO 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iocage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/iocage.py -------------------------------------------------------------------------------- /test/.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/.ansible-lint -------------------------------------------------------------------------------- /test/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/.yamllint -------------------------------------------------------------------------------- /test/ansible.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/ansible.cfg.example -------------------------------------------------------------------------------- /test/configure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/configure.yml -------------------------------------------------------------------------------- /test/extra_vars/test_31-debug-n2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_31-debug-n2.yml -------------------------------------------------------------------------------- /test/extra_vars/test_31-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_31-debug.yml -------------------------------------------------------------------------------- /test/extra_vars/test_32-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_32-debug.yml -------------------------------------------------------------------------------- /test/extra_vars/test_X-debug-n1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_X-debug-n1.yml -------------------------------------------------------------------------------- /test/extra_vars/test_jail-exec_cmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_jail-exec_cmd.yml -------------------------------------------------------------------------------- /test/extra_vars/test_jail-set_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/extra_vars/test_jail-set_properties.yml -------------------------------------------------------------------------------- /test/hosts.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/hosts.example -------------------------------------------------------------------------------- /test/iocage.py: -------------------------------------------------------------------------------- 1 | ../iocage.py -------------------------------------------------------------------------------- /test/iocage_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/iocage_test.yml -------------------------------------------------------------------------------- /test/tasks/absent_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/absent_absent.yml -------------------------------------------------------------------------------- /test/tasks/absent_restart_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/absent_restart_crash.yml -------------------------------------------------------------------------------- /test/tasks/absent_start_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/absent_start_crash.yml -------------------------------------------------------------------------------- /test/tasks/absent_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/absent_stop_crash.yml -------------------------------------------------------------------------------- /test/tasks/base_clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/base_clone.yml -------------------------------------------------------------------------------- /test/tasks/base_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/base_create.yml -------------------------------------------------------------------------------- /test/tasks/base_exists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/base_exists.yml -------------------------------------------------------------------------------- /test/tasks/base_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/base_set.yml -------------------------------------------------------------------------------- /test/tasks/base_set_template_no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/base_set_template_no.yml -------------------------------------------------------------------------------- /test/tasks/custom_stats_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/custom_stats_crash.yml -------------------------------------------------------------------------------- /test/tasks/custom_stats_end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/custom_stats_end.yml -------------------------------------------------------------------------------- /test/tasks/custom_stats_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/custom_stats_fail.yml -------------------------------------------------------------------------------- /test/tasks/custom_stats_pass.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/custom_stats_pass.yml -------------------------------------------------------------------------------- /test/tasks/custom_stats_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/custom_stats_start.yml -------------------------------------------------------------------------------- /test/tasks/facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/facts.yml -------------------------------------------------------------------------------- /test/tasks/fetch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/fetch.yml -------------------------------------------------------------------------------- /test/tasks/group_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_absent.yml -------------------------------------------------------------------------------- /test/tasks/group_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_all.yml -------------------------------------------------------------------------------- /test/tasks/group_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_base.yml -------------------------------------------------------------------------------- /test/tasks/group_jail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_jail.yml -------------------------------------------------------------------------------- /test/tasks/group_present_absent_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_present_absent_restart.yml -------------------------------------------------------------------------------- /test/tasks/group_present_start_exec_set1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_present_start_exec_set1.yml -------------------------------------------------------------------------------- /test/tasks/group_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_setup.yml -------------------------------------------------------------------------------- /test/tasks/group_start_restart_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_start_restart_stop.yml -------------------------------------------------------------------------------- /test/tasks/group_start_restart_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_start_restart_stop_crash.yml -------------------------------------------------------------------------------- /test/tasks/group_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_template.yml -------------------------------------------------------------------------------- /test/tasks/group_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/group_test.yml -------------------------------------------------------------------------------- /test/tasks/jail_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/jail_absent.yml -------------------------------------------------------------------------------- /test/tasks/jail_restore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/jail_restore.yml -------------------------------------------------------------------------------- /test/tasks/misc_get_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/misc_get_all.yml -------------------------------------------------------------------------------- /test/tasks/sanity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/sanity.yml -------------------------------------------------------------------------------- /test/tasks/template_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/template_create.yml -------------------------------------------------------------------------------- /test/tasks/template_start_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/template_start_crash.yml -------------------------------------------------------------------------------- /test/tasks/template_start_force.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/template_start_force.yml -------------------------------------------------------------------------------- /test/tasks/template_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/template_stop.yml -------------------------------------------------------------------------------- /test/tasks/test_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_absent.yml -------------------------------------------------------------------------------- /test/tasks/test_absent2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_absent2.yml -------------------------------------------------------------------------------- /test/tasks/test_clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_clone.yml -------------------------------------------------------------------------------- /test/tasks/test_exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_exec.yml -------------------------------------------------------------------------------- /test/tasks/test_pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_pkg.yml -------------------------------------------------------------------------------- /test/tasks/test_pkg_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_pkg_crash.yml -------------------------------------------------------------------------------- /test/tasks/test_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_present.yml -------------------------------------------------------------------------------- /test/tasks/test_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_restart.yml -------------------------------------------------------------------------------- /test/tasks/test_restart_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_restart_crash.yml -------------------------------------------------------------------------------- /test/tasks/test_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_set.yml -------------------------------------------------------------------------------- /test/tasks/test_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_start.yml -------------------------------------------------------------------------------- /test/tasks/test_start2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_start2.yml -------------------------------------------------------------------------------- /test/tasks/test_start3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_start3.yml -------------------------------------------------------------------------------- /test/tasks/test_start_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_start_crash.yml -------------------------------------------------------------------------------- /test/tasks/test_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_stop.yml -------------------------------------------------------------------------------- /test/tasks/test_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/tasks/test_stop_crash.yml -------------------------------------------------------------------------------- /test/templates/command.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/templates/command.j2 -------------------------------------------------------------------------------- /test/templates/command_crash.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/templates/command_crash.j2 -------------------------------------------------------------------------------- /test/templates/group.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/templates/group.j2 -------------------------------------------------------------------------------- /test/templates/group_all.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/templates/group_all.j2 -------------------------------------------------------------------------------- /test/templates/iocage_test.yml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/templates/iocage_test.yml.j2 -------------------------------------------------------------------------------- /test/vars/groups.d/group_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_absent.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_all.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_base.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_base.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_jail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_jail.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_present_absent_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_present_absent_restart.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_present_start_exec_set1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_present_start_exec_set1.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_setup.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_start_restart_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_start_restart_stop.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_start_restart_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_start_restart_stop_crash.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_template.yml -------------------------------------------------------------------------------- /test/vars/groups.d/group_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/groups.d/group_test.yml -------------------------------------------------------------------------------- /test/vars/tests.d/absent_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/absent_absent.yml -------------------------------------------------------------------------------- /test/vars/tests.d/absent_restart_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/absent_restart_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/absent_start_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/absent_start_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/absent_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/absent_stop_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/base_clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/base_clone.yml -------------------------------------------------------------------------------- /test/vars/tests.d/base_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/base_create.yml -------------------------------------------------------------------------------- /test/vars/tests.d/base_exists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/base_exists.yml -------------------------------------------------------------------------------- /test/vars/tests.d/base_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/base_set.yml -------------------------------------------------------------------------------- /test/vars/tests.d/base_set_template_no.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/base_set_template_no.yml -------------------------------------------------------------------------------- /test/vars/tests.d/facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/facts.yml -------------------------------------------------------------------------------- /test/vars/tests.d/fetch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/fetch.yml -------------------------------------------------------------------------------- /test/vars/tests.d/jail_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/jail_absent.yml -------------------------------------------------------------------------------- /test/vars/tests.d/jail_restore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/jail_restore.yml -------------------------------------------------------------------------------- /test/vars/tests.d/template_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/template_create.yml -------------------------------------------------------------------------------- /test/vars/tests.d/template_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/template_start.yml -------------------------------------------------------------------------------- /test/vars/tests.d/template_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/template_stop.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_absent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_absent.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_absent2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_absent2.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_clone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_clone.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_exec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_exec.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_pkg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_pkg.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_pkg_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_pkg_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_present.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_present.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_restart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_restart.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_restart_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_restart_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_set.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_set.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_start.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_start.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_start2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_start2.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_start3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_start3.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_start_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_start_crash.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_stop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_stop.yml -------------------------------------------------------------------------------- /test/vars/tests.d/test_stop_crash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/criecm/ansible-iocage/HEAD/test/vars/tests.d/test_stop_crash.yml --------------------------------------------------------------------------------