This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ka
/
ansible-role-dovecot
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
correct dovecot packages
master
Markus Katharina Brechtel
7 years ago
parent
9dde755a54
commit
8340f5c896
1 changed files
with
17 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+17
-1
tasks/main.yml
+ 17
- 1
tasks/main.yml
View File
@@ -2,4 +2,20 @@
- name: install package
apt:
pkg: dovecot
pkg: "{{ item }}"
with_items:
- dovecot-imapd
- dovecot-lmptd
- name: configuration pull directory
local_action: file
args:
path: host_files/{{inventory_hostname}}/etc
state: directory
- name: pull configuration
synchronize:
src: /etc/dovecot
dest: host_files/{{inventory_hostname}}/etc/
mode: pull
recursive: true
Write
Preview
Loading…
Cancel
Save