-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from d3vilh/dev
Merging with DEV
- Loading branch information
Showing
3 changed files
with
61 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
# Ansible inventory in INI format is | ||
# Depricated option for manual installation!!! | ||
|
||
[raspberry_gateway] | ||
#10.0.60.1 ansible_user=pi | ||
#10.0.60.1 ansible_user=pi # depricated | ||
|
||
# Comment out the previous line and uncomment this to run inside Rasberry Pi. | ||
127.0.0.1 ansible_connection=local ansible_user=pi | ||
127.0.0.1 ansible_connection=local ansible_user=pi #depricated | ||
|
||
# depricated | ||
# everything is depricated :) | ||
# Please stick to YAML format for inventory instead of INI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
all: | ||
hosts: | ||
raspberry_gateway: | ||
ansible_host: 192.168.1.1 | ||
ansible_user: pi | ||
ansible_connection: local | ||
ansible_use: "yes" | ||
# Comment out the previous 4 lines and uncomment 4 lines below to run on remote Raspberry-Gateway enviroment. | ||
# Double check the user name and IP address. | ||
# ansible_host: 192.168.1.1 | ||
# ansible_user: pi | ||
# ansible_connection: ssh | ||
# ansible_use: "yes" | ||
|