cups_server: Lint fixes
This commit is contained in:
parent
5f170a6caf
commit
86a7b60b46
1 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /etc/systemd/system/cups.service.d
|
path: /etc/systemd/system/cups.service.d
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0755
|
mode: "0755"
|
||||||
owner: root
|
owner: root
|
||||||
group: "{{ ansible_wheel }}"
|
group: "{{ ansible_wheel }}"
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
dest: /etc/systemd/system/cups.service.d/keytab.conf
|
dest: /etc/systemd/system/cups.service.d/keytab.conf
|
||||||
content: "[Service]\nEnvironment=KRB5_KTNAME=FILE:/etc/cups/cups.keytab\n"
|
content: "[Service]\nEnvironment=KRB5_KTNAME=FILE:/etc/cups/cups.keytab\n"
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
owner: root
|
owner: root
|
||||||
group: "{{ ansible_wheel }}"
|
group: "{{ ansible_wheel }}"
|
||||||
|
|
||||||
|
@ -111,7 +111,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
dest: "/usr/share/cups/www/{{ item }}"
|
dest: "/usr/share/cups/www/{{ item }}"
|
||||||
src: "{{ item }}"
|
src: "{{ item }}"
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
owner: root
|
owner: root
|
||||||
group: "{{ ansible_wheel }}"
|
group: "{{ ansible_wheel }}"
|
||||||
with_items:
|
with_items:
|
||||||
|
@ -122,7 +122,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
dest: /usr/share/cups/templates/header.tmpl
|
dest: /usr/share/cups/templates/header.tmpl
|
||||||
src: header.tmpl
|
src: header.tmpl
|
||||||
mode: 0644
|
mode: "0644"
|
||||||
owner: root
|
owner: root
|
||||||
group: "{{ ansible_wheel }}"
|
group: "{{ ansible_wheel }}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue