2019-08-31 06:47:50 +00:00
|
|
|
# Roles
|
|
|
|
|
|
|
|
Some simple Ansible roles created with `ansible-galaxy init <role> --offline` command
|
|
|
|
|
|
|
|
klips/ansible/roles/...
|
2019-08-31 07:01:59 +00:00
|
|
|
- core - Role to configure a new host with basic authentication / package settings
|
|
|
|
- docker - Role to install docker, docker-compose, configure docker user group
|
|
|
|
- nginx - Role to install and configure a new nginx webserver on a host
|
2019-08-31 06:47:50 +00:00
|
|
|
|
|
|
|
All of these roles assume you are using the apt package manager, and running a Debian / Ubuntu system.
|
|
|
|
|
2019-08-31 07:08:24 +00:00
|
|
|
|
2019-08-31 06:47:50 +00:00
|
|
|
core
|
|
|
|
------------
|
|
|
|
|
|
|
|
A simple role for configuring a set of packages / settings on a new Ubuntu host using Ansible.
|
|
|
|
|
2019-08-31 07:08:24 +00:00
|
|
|
### Packages Added / Configured
|
|
|
|
|
|
|
|
Git
|
|
|
|
- Configure / set user name and email
|
|
|
|
|
|
|
|
SSH
|
|
|
|
- MOTD (Template, replacable, displayed on login.)
|
|
|
|
- PAM (Template, replacable, authusers file to bypass)
|
|
|
|
- authusers (Add users to file to bypass PAM settings)
|
|
|
|
|
|
|
|
Vim
|
|
|
|
- Install Vim
|
|
|
|
- Run https://github.com/shaunrd0/klips/blob/master/scripts/setup-vim.sh
|
2019-08-31 06:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
docker
|
|
|
|
------------
|
|
|
|
|
|
|
|
A simple role for installing Docker and Docker Compose on a new Ubuntu host using Ansible.
|
|
|
|
|
|
|
|
|
|
|
|
nginx
|
|
|
|
------------
|
|
|
|
|
|
|
|
A simple role for installing and configuring nginx on a new Ubuntu host using Ansible. Supports templates for index.html and custom nginx.conf
|
|
|
|
|