blob: ad41524e9acb13593676a93deb85a9ec07ddf7ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Infrastructure
## Bootstrapping
Ensure you can `ssh root@ñix.es`, and then:
```
uv run ansible-playbook -i ssh-root.yaml -i production.yaml site.yaml
```
## Running Ansible
After bootstrapping, you can run Ansible via ssh with your user and `sudo`.
After [setting your user password](roles/users/README.md):
```
uv run ansible-playbook -K -i production.yaml site.yaml
```
|