.. _example_002: 002 Activate iocage ------------------- .. contents:: :local: :depth: 1 .. index:: single: role vbotka.freebsd.iocage; Example 002 .. index:: single: iocage activate; Example 002 .. index:: single: activate iocage; Example 002 Use case ^^^^^^^^ Use the `role vbotka.freebsd.iocage`_ to activate `iocage`_. Tree ^^^^ :: shell> tree . ├── ansible.cfg ├── host_vars │   ├── iocage_02 │   │   └── iocage.yml │   └── iocage_04 │   └── iocage.yml ├── iocage.ini └── pb-iocage.yml Synopsis ^^^^^^^^ * At the managed node ``iocage_04`` In the playbook ``pb-iocage.yml``, use the `role vbotka.freebsd.iocage`_ to: * activate `iocage`_. Requirements ^^^^^^^^^^^^ * `role vbotka.freebsd.iocage`_ * root privilege in the managed nodes * binary `iocage`_. Notes ^^^^^ * Put ``-l iocage_02`` into the run-strings to run the play on the managed node ``iocage_02`` * Remove the limits ``-l iocage_0*`` to run the play on all managed nodes. * By default, ``iocage`` activation is disabled ``freebsd_iocage_activate: false`` .. seealso:: * `Activate iocage`_ ansible.cfg ^^^^^^^^^^^ .. literalinclude:: ansible.cfg :language: ini Inventory iocage.ini ^^^^^^^^^^^^^^^^^^^^ .. literalinclude:: iocage.ini :language: ini host_vars ^^^^^^^^^ .. literalinclude:: host_vars/iocage_02/iocage.yml :language: yaml :caption: .. literalinclude:: host_vars/iocage_04/iocage.yml :language: yaml :caption: .. note:: * The activation will be skipped if the directory ``freebsd_iocage_mount`` exists. * The variable ``freebsd_iocage_mount`` is declared in ``defaults/main/main.yml`` :: freebsd_iocage_mount: "{{ freebsd_iocage_pool_mount }}/iocage" Playbook pb-iocage.yml ^^^^^^^^^^^^^^^^^^^^^^ .. literalinclude:: pb-iocage.yml :language: yaml Playbook output - Activate iocage ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. code-block:: console (env) > ansible-playbook pb-iocage.yml -i iocage.ini -l iocage_04 \ -t freebsd_iocage_activate \ -e freebsd_iocage_activate=true \ -e freebsd_iocage_debug=true .. literalinclude:: out/out-01.txt :language: yaml :force: .. note:: This ``debug`` shows the ``result`` of already activated `iocage`_. .. _role vbotka.freebsd.iocage: https://galaxy.ansible.com/ui/repo/published/vbotka/freebsd/content/role/iocage/ .. _iocage: https://freebsd.github.io/iocage/index.html .. _iocage - A FreeBSD Jail Manager: https://freebsd.github.io/iocage/index.html .. _Activate iocage: https://freebsd.github.io/iocage/basic-use.html#activate-iocage