renamed roles

This commit is contained in:
James Tombleson 2019-05-07 15:21:33 -07:00
parent fad12ff06d
commit c094921e17
26 changed files with 12 additions and 4 deletions

7
.gitignore vendored
View File

@ -1,7 +1,12 @@
# Ansible Files
*.retry
*.swp
# OSX files
.DS_Store
# Ansible Inventory
hosts
win_hosts

View File

@ -25,11 +25,13 @@ powershell.exe -ExecutionPolicy ByPass -File $file
## Configuration
I have a basic configuration file in place at the root of this folder for anisble to find.
I have a basic configuration file in place at the root of this folder for anisble to find. If you work out of this directory the configuration file will take effect that is loaded.
## Inventory
I have a template file in place that should only be used as a refrence. Make a copy of that file and name it hosts then update that file.
I have a template file in place that should only be used as a reference. Make a copy of that file and name it hosts then update that file.
The configuration file that is active is looking for a directory that contains all of the inventory files. This way all files can be parted out rather then one big file.
### Testing Linux devices

View File

@ -11,7 +11,7 @@
# some basic default values...
inventory = ~/hosts
inventory = ~/hosts/
library = /usr/share/my_modules/
module_utils = /usr/share/my_module_utils/
remote_tmp = ~/.ansible/tmp

View File

@ -5,6 +5,7 @@
hosts: linux
tasks:
# https://galaxy.ansible.com/jnv/unattended-upgrades
- name: unattended-upgrades
become: true
include_role: