No description
Find a file
2022-09-15 16:03:40 +01:00
inventories Separate local.ini for Linux/FreeBSD 2022-09-05 09:47:54 +01:00
roles Zsh keybindings 2022-09-14 21:56:07 +01:00
.gitignore Separate local.ini for Linux/FreeBSD 2022-09-05 09:47:54 +01:00
admin-cli.yml Remove duplication 2022-07-17 19:35:15 +01:00
admin-gui.yml Remove duplication 2022-07-17 19:35:15 +01:00
ansible-setup.sh Be specific about where to install Ansible 2022-08-15 11:43:49 +01:00
collections.sh Install collections in one go 2022-09-15 16:03:40 +01:00
console.sh Update profile path 2022-09-11 22:19:25 +01:00
desktop.sh Update profile path 2022-09-11 22:19:25 +01:00
freebsd-local.ini Add local.ini for FreeBSD 2022-09-05 09:45:45 +01:00
LICENSE Move licenses to subfolders 2020-01-11 17:58:31 +00:00
main.yml Handle Silverblue 2022-07-17 19:46:59 +01:00
README.md Update clone URLs 2021-03-31 12:28:56 +01:00
user-cli.yml Add Apache 2.0 license text to all .yml files 2021-02-19 22:55:57 +00:00
user-gui.yml Add Apache 2.0 license text to all .yml files 2021-02-19 22:55:57 +00:00

Workstation Ansible playbooks

This repository sets up various operating systems to my own preference. The playbooks can be run against the local machine:

./user-cli.yml -i ./local.ini

Or they can be run against a remote machine:

./user-cli.yml -i target.example.com,

Note that the trailing comma is important when using a remote hostname.

Cloning without SSL verification

Some platforms (NetBSD, FreeBSD) do not include root SSL certificates by default. This causes the initial git clone to fail with the error server certificate verification failed. You can ignore SSL warnings with the GIT_SSL_NO_VERIFY=true environment variable:

GIT_SSL_NO_VERIFY=true git clone https://github.com/acperkins/workstation.git

This will clone without checking the validation of the root certificates. This should only be done for the initial clone. The playbooks should be configured to set up SSL trust for all future actions (for example by installing and configuring the mozilla-rootcerts-openssl package on NetBSD, or the ca_root_nss package on FreeBSD).