Use FQCN for module names
This commit is contained in:
parent
be273475c9
commit
8ba9437c89
17 changed files with 52 additions and 52 deletions
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: enable google chrome repository
|
||||
yum_repository:
|
||||
ansible.builtin.yum_repository:
|
||||
name: google-chrome
|
||||
baseurl: http://dl.google.com/linux/chrome/rpm/stable/x86_64
|
||||
description: Google Chrome
|
||||
|
@ -9,12 +9,12 @@
|
|||
enabled: true
|
||||
|
||||
- name: "install google chrome"
|
||||
package:
|
||||
ansible.builtin.package:
|
||||
name: google-chrome-stable
|
||||
state: present
|
||||
|
||||
- name: "create google chrome policy directories"
|
||||
file:
|
||||
ansible.builtin.file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: 0755
|
||||
|
@ -25,7 +25,7 @@
|
|||
- /etc/opt/chrome/policies/recommended
|
||||
|
||||
- name: "install google chrome managed settings"
|
||||
copy:
|
||||
ansible.builtin.copy:
|
||||
dest: /etc/opt/chrome/policies/managed/foo.sh.json
|
||||
src: managed.json
|
||||
mode: 0644
|
||||
|
@ -33,7 +33,7 @@
|
|||
group: root
|
||||
|
||||
- name: "install google chrome recommended settings"
|
||||
copy:
|
||||
ansible.builtin.copy:
|
||||
dest: /etc/opt/chrome/policies/recommended/foo.sh.json
|
||||
src: recommended.json
|
||||
mode: 0644
|
||||
|
@ -41,7 +41,7 @@
|
|||
group: root
|
||||
|
||||
- name: install custom chrome startup scripts
|
||||
copy:
|
||||
ansible.builtin.copy:
|
||||
dest: "/usr/local/bin/{{ item }}"
|
||||
src: "{{ item }}.sh"
|
||||
mode: 0755
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue