Skip to content
Snippets Groups Projects
Commit 9006af3e authored by Chris Croome's avatar Chris Croome
Browse files
parent 7e77b513
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,9 @@ export SERVERNAME="webarch1.co.uk"
ansible-playbook live2dev.yml -i "${SERVERNAME}," -e "hostname=${SERVERNAME}"
```
See also [the wiki documntation](https://wiki.coops.tech/wiki/CoTech_WordPress)
and the [GitHub project](https://github.com/cotech/website).
## Discourse
Ansible Playbooks to install
......
roles/live2dev/files/favicon.ico

4.06 KiB

......@@ -26,6 +26,15 @@
group: "{{ item }}"
with_items: "{{ users }}"
- name: favicon.ico file in place
copy:
src: files/favicon.ico
dest: "/home/{{ item }}/sites/web/favicon.ico"
mode: 0644
owner: "{{ item }}"
group: "{{ item }}"
with_items: "{{ users }}"
- name: ~/bin in PATH
lineinfile:
regexp: '^export\ PATH='
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment