We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/var/www/ood/public/
Environment:
Extend role to allow deployment of assets into /var/www/ood/public/. For example, site-specific logos.
This can be done in a playbook, for example
vars: # Assets directory whose contents are to be copied to # /var/www/ood/public/. # local_public_assets: files/public # Templates directory. local_templates: "templates/" tasks: - name: Copy 'public' assets ansible.builtin.copy: src: "{{ item }}" dest: "/var/www/ood/public" owner: root group: root with_fileglob: "{{ local_public_assets }}/*" when: local_public_assets is defined
For role completeness, it would be useful if it could be done via the role. Thanks,
The text was updated successfully, but these errors were encountered:
Yea I agree - thanks for the ticket!
Sorry, something went wrong.
No branches or pull requests
Environment:
Extend role to allow deployment of assets into
/var/www/ood/public/
. For example, site-specific logos.This can be done in a playbook, for example
For role completeness, it would be useful if it could be done via the role. Thanks,
The text was updated successfully, but these errors were encountered: