Skip to content

Commit

Permalink
update installation readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nkonev committed Dec 9, 2024
1 parent 1bfcdd7 commit 66b3dd5
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions install/ansible/readme.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
# Install
# Installation

Tested on Rocky Linux 9.3.

```bash
# install Ansible and passlib onto local machine
pip3 install passlib
sudo dnf install ansible

cd install/ansible

# prepare configs
mkdir ~/blog
# copy then edit this both vars and inventory
cp ./roles/install/vars/main.yml.example ~/blog/vars.yml
cp ./inventory.ini.example ~/blog/inventory.ini
# run

# run the full installation
ansible-playbook -i ~/blog/inventory.ini --extra-vars "@~/blog/vars.yml" --tags "services,videochat,continuous" playbook.yaml
```

# Just update
# Just an update
```bash
# services and videochat
ansible-playbook -i ~/blog/inventory.ini --extra-vars "@~/blog/vars.yml" --extra-vars "image_install_tag=changing" --tags "services,videochat" playbook.yaml

# only videochat
ansible-playbook -i ~/blog/inventory.ini --extra-vars "@~/blog/vars.yml" --extra-vars "image_install_tag=changing" --tags "videochat" playbook.yaml
```

0 comments on commit 66b3dd5

Please sign in to comment.