Skip to content

Commit

Permalink
Merge pull request #214 from drybjed/remove-default-common
Browse files Browse the repository at this point in the history
Remove 'd([])' from common.yml playbook
  • Loading branch information
drybjed committed Nov 24, 2015
2 parents aa59ed9 + b124c6a commit ac519cc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ v0.2.8
You can use :command:`sed --regexp-extended --in-place '/\[debops_service_/! s/^\[debops_(.+)\]$/[debops_service_\1]/' hosts`
to update your inventory file. [ypid]

- Remove ``d([])`` from ``common.yml`` playbook to pass the variables correctly
between roles. [drybjed]

v0.2.7
------

Expand Down
8 changes: 4 additions & 4 deletions playbooks/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
- role: debops.apt_preferences
tags: [ 'apt_preferences', 'role::apt_preferences' ]
apt_preferences_dependent_list:
- '{{ sshd_apt_preferences_dependent_list | d([]) }}'
- '{{ sshd_apt_preferences_dependent_list }}'

- role: debops.etc_services
tags: [ 'role::etc_services' ]
Expand All @@ -34,13 +34,13 @@
- role: debops.ferm
tags: [ 'role::ferm' ]
ferm_dependent_rules:
- '{{ (ntp_ferm_dependent_rules | d([])) }}'
- '{{ (sshd_ferm_dependent_rules | d([])) }}'
- '{{ (ntp_ferm_dependent_rules }}'
- '{{ (sshd_ferm_dependent_rules }}'

- role: debops.tcpwrappers
tags: [ 'role::tcpwrappers' ]
tcpwrappers_dependent_allow:
- '{{ sshd_tcpwrappers_dependent_allow | d([]) }}'
- '{{ sshd_tcpwrappers_dependent_allow }}'

- role: debops.ntp
tags: [ 'role::ntp' ]
Expand Down

0 comments on commit ac519cc

Please sign in to comment.