No description
Find a file
2021-09-27 22:33:58 +01:00
roles Prefer ff over rebase 2021-09-27 22:33:58 +01:00
.gitignore Ignore .retry files 2019-10-03 15:15:04 +01:00
admin-cli.yml Add Apache 2.0 license text to all .yml files 2021-02-19 22:55:57 +00:00
admin-gui.yml Add Apache 2.0 license text to all .yml files 2021-02-19 22:55:57 +00:00
ansible-setup.sh Make symbolic links 2021-08-31 21:53:19 +01:00
LICENSE Move licenses to subfolders 2020-01-11 17:58:31 +00:00
local.ini Always use python3 2021-02-28 11:41:25 +00:00
README.md Update clone URLs 2021-03-31 12:28:56 +01:00
requirements.yml Add Apache 2.0 license text to all .yml files 2021-02-19 22:55:57 +00: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).