2019-02-10 15:33:10 +00:00
|
|
|
---
|
|
|
|
- block:
|
2019-08-13 20:05:48 +00:00
|
|
|
- name: Install cups
|
2019-02-10 15:33:10 +00:00
|
|
|
yum:
|
2019-08-13 20:27:17 +00:00
|
|
|
name: "{{ cups_packages | default(__cups_packages) }}"
|
2019-02-10 15:33:10 +00:00
|
|
|
state: present
|
2019-02-12 22:31:40 +00:00
|
|
|
notify: __cupsd_restart
|
2019-02-10 17:21:25 +00:00
|
|
|
|
2019-08-13 20:05:48 +00:00
|
|
|
- name: Install extra packages
|
2019-02-10 22:55:24 +00:00
|
|
|
yum:
|
2019-08-13 20:05:48 +00:00
|
|
|
name: "{{ cups_packages_extra }}"
|
2019-02-10 22:55:24 +00:00
|
|
|
state: present
|
2019-02-12 22:31:40 +00:00
|
|
|
notify: __cupsd_restart
|
2019-02-10 22:55:24 +00:00
|
|
|
|
2019-02-10 17:21:25 +00:00
|
|
|
- name: Deploy global config files
|
|
|
|
template:
|
2019-02-21 20:27:21 +00:00
|
|
|
src: "{{ item }}.j2"
|
|
|
|
dest: "/{{ item }}"
|
2019-02-10 17:21:25 +00:00
|
|
|
mode: 0640
|
2019-02-21 20:27:21 +00:00
|
|
|
loop:
|
|
|
|
- etc/cups/cupsd.conf
|
|
|
|
- etc/cups/cups-files.conf
|
2019-02-10 17:21:25 +00:00
|
|
|
notify: __cupsd_restart
|
2019-02-10 17:33:57 +00:00
|
|
|
|
2019-02-18 21:17:00 +00:00
|
|
|
- name: Update pamd rule's control in /etc/pam.d/cups
|
|
|
|
pamd:
|
|
|
|
name: cups
|
|
|
|
type: "{{ item.type }}"
|
|
|
|
control: "{{ item.control }}"
|
|
|
|
module_path: "{{ item.module }}"
|
|
|
|
module_arguments: "{{ item.arguments | default(omit) }}"
|
|
|
|
new_module_path: "{{ item.new_module }}"
|
|
|
|
loop: "{{ __pam_config }}"
|
|
|
|
|
2019-02-10 17:33:57 +00:00
|
|
|
- name: Open ports in iptables
|
|
|
|
iptables_raw:
|
2019-02-12 23:10:26 +00:00
|
|
|
name: "{{ item.name }}"
|
|
|
|
rules: "{{ item.rules }}"
|
|
|
|
state: "{{ item.state }}"
|
|
|
|
weight: "{{ item.weight | default(omit) }}"
|
|
|
|
table: "{{ item.table | default(omit) }}"
|
|
|
|
loop: "{{ cups_open_ports }}"
|
|
|
|
loop_control:
|
|
|
|
label: "{{ item.name }}"
|
2019-02-10 17:33:57 +00:00
|
|
|
when: cups_iptables_enabled
|
2019-02-10 15:33:10 +00:00
|
|
|
become: True
|
|
|
|
become_user: root
|