2022-05-31 04:36:55 +00:00
|
|
|
# OpenPunk's Ansible playbook
|
2022-05-30 15:46:36 +00:00
|
|
|
|
|
|
|
This is my failsafe (and also my helpful migration tool) for restoring the OpenPunk server. This handles setting everything back up, including:
|
|
|
|
|
|
|
|
- gitea
|
|
|
|
- blog
|
|
|
|
- tor mirror
|
2022-05-31 04:36:55 +00:00
|
|
|
- nginx (for the above mentioned)
|
|
|
|
- my shell theme (zsh + powerlevel10k)
|
|
|
|
- deadswitch (& the ssh + git config to allow pushes)
|
|
|
|
|
|
|
|
## Notes to my future self
|
|
|
|
|
|
|
|
The deadswitch is disabled by default. Delete the file lock at `/root/.deadlock` to enable it.
|
2022-05-30 15:46:36 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```sh
|
|
|
|
ansible-playbook -i hosts --ask-vault-pass run.yml
|
|
|
|
```
|
2022-05-31 04:36:55 +00:00
|
|
|
> NOTE: The 'secrets' directory has been omitted from this repo (so it's not going to run without the provided files)
|
2022-05-30 15:46:36 +00:00
|
|
|
|
|
|
|
## Example hosts file
|
|
|
|
|
|
|
|
```
|
|
|
|
[hosts]
|
|
|
|
openpunk-vps ansible_host=104.238.138.76 ansible_user=root ansible_connection=ssh
|
|
|
|
```
|