https://github.com/computate-org/computate_ansible
https://github.com/computate-org/computate_ansible
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/computate-org/computate_ansible
- Owner: computate-org
- Created: 2022-02-18T00:39:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T04:44:13.000Z (almost 4 years ago)
- Last Synced: 2025-04-09T10:23:51.884Z (about 1 year ago)
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Install the bzflag ansible role
```bash
# Create a directory for the ansible role.
install -d ~/.ansible/roles/computate.computate_ansible
# Clone the bzflag ansible role.
git clone git@github.com:computate-org/computate_ansible.git ~/.ansible/roles/computate.computate_ansible
cd ~/.ansible/roles/computate.computate_ansible
```
# Update the submodules to load all of the child Ansible roles.
```bash
git submodule update --init --recursive
```
# Add new child roles.
You can add new child roles like this:
```bash
git submodule add https://github.com/computate-org/computate_sqlite.git roles/computate.computate_sqlite
```
# Run the individual playbooks to install the applications locally.
```bash
ansible-playbook -i localhost, -c local install_gorilla.yml
ansible-playbook -i localhost, -c local install_sumo.yml
ansible-playbook -i localhost, -c local install_shotwell.yml
ansible-playbook -i localhost, -c local install_syncthing.yml
ansible-playbook -i localhost, -c local install_bzflag.yml
ansible-playbook -i localhost, -c local install_mari0.yml
ansible-playbook -i localhost, -c local install_supertuxkart.yml
```