Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust Ansible group name according to recent playbook changes #147

Merged
merged 1 commit into from
Feb 20, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bin/debops-init
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ HOSTS_FILE_HEADER = """\
# This is an Ansible inventory file in INI format. You can define a list of
# hosts and groups to be managed by this particular inventory.

# Hosts listed under [ansible_controllers] will have common DebOps plays
# Hosts listed under [debops_all_hosts] will have common DebOps plays
# ran against them. It will include services such as iptables, DNS, Postfix,
# sshd configuration and more.
#
Expand All @@ -115,7 +115,7 @@ HOSTS_FILE_HEADER = """\
HOSTS_FILE_CONTENT_CONTROLER = """
# Your host is eligible to be managed by DebOps' common playbook. If you want
# that functionality and more, then uncomment your hostname below.
[ansible_controllers]
[debops_all_hosts]
#%s ansible_connection=local
""" % platform.node()

Expand All @@ -124,7 +124,7 @@ HOSTS_FILE_CONTENT_NO_CONTROLER = """
# the above features on your current operating system. You can however
# use Vagrant or something else to setup a VM and install DebOps there.

[ansible_controllers]
[debops_all_hosts]
#<VM host IP>
"""

Expand Down