23 lines
570 B
Markdown
23 lines
570 B
Markdown
|
# FreeBSD
|
||
|
|
||
|
# as root
|
||
|
pkg install py37-ansible python3 sudo bash
|
||
|
visudo # allow user to sudo without password
|
||
|
# as your user
|
||
|
ansible-galaxy collection install community.general
|
||
|
./playbook.sh
|
||
|
|
||
|
# Fedora
|
||
|
|
||
|
sudo visudo # allow user to sudo without password
|
||
|
sudo dnf install -y ansible ansible-collection-general
|
||
|
./playbook.sh
|
||
|
|
||
|
# All operating systems
|
||
|
|
||
|
bw server https://bitwarden.penguincoder.org
|
||
|
bw login
|
||
|
# configure `BW_SESSION`
|
||
|
chezmoi init ssh://git@git.penguincoder.org:2222/penguincoder/dotfiles.git
|
||
|
chezmoi apply
|