Browse Source

Hosts are now under the [sovereign] group

Allows hosts to use vars in `group_vars/sovereign`
Allen Riddell 8 years ago
parent
commit
06f43905c9
2 changed files with 4 additions and 3 deletions
  1. 4
    2
      hosts
  2. 0
    1
      site.yml

+ 4
- 2
hosts View File

1
-[TODO]
2
-TODO # put your host's IP here
1
+[sovereign]
2
+# hosts in the `sovereign` group  use vars defined in `group_vars/sovereign`
3
+# put your host's IP address or domain name below
4
+host.example.net

+ 0
- 1
site.yml View File

2
 # This is the top-level playbook that defines our entire infrastructure.
2
 # This is the top-level playbook that defines our entire infrastructure.
3
 
3
 
4
 - hosts: all
4
 - hosts: all
5
-  user: deploy
6
   become: True
5
   become: True
7
   gather_facts: True
6
   gather_facts: True
8
   vars_files:
7
   vars_files:

Loading…
Cancel
Save