Fix READMEs
This commit is contained in:
parent
59ad80bda7
commit
d6170be41d
29
README.md
29
README.md
|
@ -43,13 +43,17 @@ klips/
|
||||||
### ansible
|
### ansible
|
||||||
|
|
||||||
Ansible roles, playbooks
|
Ansible roles, playbooks
|
||||||
|
|
||||||
|
Playbooks
|
||||||
- apt-up.yml - Playbook to update servers / groups ad hoc
|
- apt-up.yml - Playbook to update servers / groups ad hoc
|
||||||
- core.yml - Playbook example for using core configuration role
|
- core.yml - Playbook example for using core configuration role
|
||||||
- docker.yml - Playbook example for using docker install role (Debian / Ubuntu)
|
- docker.yml - Playbook example for using docker install role (Debian / Ubuntu)
|
||||||
- hosts - Sample / partially default ansible hosts file
|
- hosts - Sample / partially default ansible hosts file
|
||||||
- make-host.yml - Playbook example for using multiple roles together to create a new host
|
- make-host.yml - Playbook example for using multiple roles together to create a new host
|
||||||
- nginx.yml - Playbook example for using nginx role
|
- nginx.yml - Playbook example for using nginx role
|
||||||
- roles - Some simple Ansible roles created with `ansible-galaxy init <role> --offline` command
|
|
||||||
|
Roles
|
||||||
|
- Basic ansible role created with ansible-galaxy command
|
||||||
- core - Role to configure a new host with basic authentication / package settings
|
- core - Role to configure a new host with basic authentication / package settings
|
||||||
- docker - Role to install docker, docker-compose, configure docker user group (Debian / Ubuntu)
|
- docker - Role to install docker, docker-compose, configure docker user group (Debian / Ubuntu)
|
||||||
- nginx - Role to install and configure a new nginx webserver on a host
|
- nginx - Role to install and configure a new nginx webserver on a host
|
||||||
|
@ -66,15 +70,22 @@ Ansible roles, playbooks
|
||||||
- doxygenROT - Basic rule-of-thumb for Doxygen commenting
|
- doxygenROT - Basic rule-of-thumb for Doxygen commenting
|
||||||
|
|
||||||
### scripts
|
### scripts
|
||||||
- adduser.sh - Script to add new user, run with sudo if you want to configure / allow user to sudo
|
|
||||||
- ./adduser - (Print help text)
|
adduser.sh - Script to add new user, run with sudo if you want to configure / allow user to sudo
|
||||||
- ./adduser <name> <userID> - (Don't need sudo if new user doesn't need it)
|
- `./adduser` - (Print help text)
|
||||||
- sudo ./adduser <name> <userID>
|
- `./adduser <name> <userID>` - (Don't need sudo if new user doesn't need it)
|
||||||
- sudo ./adduser jeff 1005 - (Create jeff user and assign userID to 1005)
|
- `sudo ./adduser <name> <userID>`
|
||||||
|
- `sudo ./adduser jeff 1005` - (Create jeff user and assign userID to 1005)
|
||||||
- Follow prompts to configure password / sudo depending on needs of new user
|
- Follow prompts to configure password / sudo depending on needs of new user
|
||||||
- cmake-build.sh - Script to toss around and build cmake projects
|
|
||||||
- README.md - Further clarification of scripts
|
cmake-build.sh
|
||||||
- setup-vim.sh - Script for setting up vim configuration
|
- Script to toss around and build cmake projects
|
||||||
|
|
||||||
|
README.md
|
||||||
|
- Further clarification of scripts
|
||||||
|
|
||||||
|
setup-vim.sh
|
||||||
|
- Script for setting up vim configuration
|
||||||
- Includes Pathogen Plugin manager
|
- Includes Pathogen Plugin manager
|
||||||
- Includes auto-completion (Clang_completion)
|
- Includes auto-completion (Clang_completion)
|
||||||
- Supertab completion interaction (Tab to interact with completion context)
|
- Supertab completion interaction (Tab to interact with completion context)
|
||||||
|
|
|
@ -11,7 +11,7 @@ Playbooks
|
||||||
- nginx.yml - Playbook example for using nginx role
|
- nginx.yml - Playbook example for using nginx role
|
||||||
|
|
||||||
Roles
|
Roles
|
||||||
- roles - Basic ansible role created with ansible-galaxy command
|
- Basic ansible role created with ansible-galaxy command
|
||||||
- core - Role to configure a new host with basic authentication / package settings
|
- core - Role to configure a new host with basic authentication / package settings
|
||||||
- docker - Role to install docker, docker-compose, configure docker user group (Debian / Ubuntu)
|
- docker - Role to install docker, docker-compose, configure docker user group (Debian / Ubuntu)
|
||||||
- nginx - Role to install and configure a new nginx webserver on a host
|
- nginx - Role to install and configure a new nginx webserver on a host
|
||||||
|
|
|
@ -9,19 +9,23 @@ klips/ansible/roles/...
|
||||||
|
|
||||||
All of these roles assume you are using the apt package manager, and running a Debian / Ubuntu system.
|
All of these roles assume you are using the apt package manager, and running a Debian / Ubuntu system.
|
||||||
|
|
||||||
|
|
||||||
core
|
core
|
||||||
------------
|
------------
|
||||||
|
|
||||||
A simple role for configuring a set of packages / settings on a new Ubuntu host using Ansible.
|
A simple role for configuring a set of packages / settings on a new Ubuntu host using Ansible.
|
||||||
|
|
||||||
Packages Added / Configured
|
### Packages Added / Configured
|
||||||
- Git
|
|
||||||
|
Git
|
||||||
- Configure / set user name and email
|
- Configure / set user name and email
|
||||||
- SSH
|
|
||||||
|
SSH
|
||||||
- MOTD (Template, replacable, displayed on login.)
|
- MOTD (Template, replacable, displayed on login.)
|
||||||
- PAM (Template, replacable, authusers file to bypass)
|
- PAM (Template, replacable, authusers file to bypass)
|
||||||
- authusers (Add users to file to bypass PAM settings)
|
- authusers (Add users to file to bypass PAM settings)
|
||||||
- Vim
|
|
||||||
|
Vim
|
||||||
- Install Vim
|
- Install Vim
|
||||||
- Run https://github.com/shaunrd0/klips/blob/master/scripts/setup-vim.sh
|
- Run https://github.com/shaunrd0/klips/blob/master/scripts/setup-vim.sh
|
||||||
|
|
||||||
|
|
|
@ -3,14 +3,17 @@ core
|
||||||
|
|
||||||
A simple role for configuring a set of packages / settings on a new Ubuntu host using Ansible.
|
A simple role for configuring a set of packages / settings on a new Ubuntu host using Ansible.
|
||||||
|
|
||||||
Packages Added / Configured
|
### Packages Added / Configured
|
||||||
- Git
|
|
||||||
|
Git
|
||||||
- Configure / set user name and email
|
- Configure / set user name and email
|
||||||
- SSH
|
|
||||||
|
SSH
|
||||||
- MOTD (Template, replacable, displayed on login.)
|
- MOTD (Template, replacable, displayed on login.)
|
||||||
- PAM (Template, replacable, authusers file to bypass)
|
- PAM (Template, replacable, authusers file to bypass)
|
||||||
- authusers (Add users to file to bypass PAM settings)
|
- authusers (Add users to file to bypass PAM settings)
|
||||||
- Vim
|
|
||||||
|
Vim
|
||||||
- Install Vim
|
- Install Vim
|
||||||
- Run https://github.com/shaunrd0/klips/scripts/setup-vim.sh
|
- Run https://github.com/shaunrd0/klips/scripts/setup-vim.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue