Ansible Setup » History » Revision 24
Revision 23 (Jon Goldberg, 05/11/2022 03:31 PM) → Revision 24/32 (Jon Goldberg, 10/01/2022 08:42 PM)
{{last_updated_at}} by {{last_updated_by}}
# Ansible Setup
Ansible setup is now done through Ansible itself plus a short bootstrap script. Please check earlier revisions of this page for manual setup.
### Prerequisites
* You have sudo installed and you have sudo permissions.
* You have a GPG key pair and SSH key pair on this computer.
* Your SSH public key for this computer must be added to your Gitea account. Ideally it's also on other servers.
* Your GPG public key must be added to the pass database, and it must be signed by Jon.
* Nextcloud should be installed.
NOTE: You can bootstrap without adding your server to crm.megaphonetech.com, but after bootstrap your server must be in the inventory.
### Bootstrap stage 1 script
Run these commands:
```shell
sudo useradd -m ansible #FIXME: This should be happening in localhost-bootstrap.
sudo apt install ansible git
git clone https://github.com/MegaphoneJon/ansible-main.git ansible --recursive
cd ansible
git submodule init
git submodule sync
git submodule update
# run the bootstrap stage 2. bootstrap. You'll be prompted for your 'BECOME password'; it's your user pw (for sudo).
ansible-playbook localhost-bootstrap.yml --inventory localhost, --ask-become-pass --extra-vars "ansible_user=ansible"
```