### Install pfSense Core Collection Source: https://galaxy.ansible.com/pfsensible/core Installs the pfsensible.core Ansible collection using ansible-galaxy. Ensure you have ansible-core version 2.13.9 or later. ```bash ansible-galaxy collection install pfsensible.core ``` -------------------------------- ### Install pfSense Core Collection to a Specific Path Source: https://galaxy.ansible.com/pfsensible/core Installs the pfsensible.core Ansible collection to a custom path using the -p option with ansible-galaxy. ```bash ansible-galaxy collection install pfsensible.core -p ./collections ``` -------------------------------- ### Install sudo package on pfSense Source: https://galaxy.ansible.com/pfsensible/core Installs the pfSense-pkg-sudo package using the Ansible package module. This is required for using 'become' with Ansible on pfSense. ```yaml - name: "Install packages" package: name: - pfSense-pkg-sudo state: present ``` -------------------------------- ### Configure Ansible Collections Path Source: https://galaxy.ansible.com/pfsensible/core Sets the collections_paths option in ansible.cfg to automatically designate installation locations for Ansible collections. ```ini [defaults] collections_paths=collections ``` -------------------------------- ### Set Ansible Python Interpreter for pfSense Source: https://galaxy.ansible.com/pfsensible/core Specifies the ansible_python_interpreter variable in a playbook or host vars when automatic Python discovery fails. Example for pfSense 2.7.2. ```yaml ansible_python_interpreter: /usr/local/bin/python3.11 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.