Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- ---
-
- - name: vnc directory
- file:
- path: ~/.vnc
- state: directory
- mode: 0700
-
- - name: vnc passwd
- copy:
- content: "{{ lookup('pipe','pwgen 24 1' )}}"
- dest: ~/.vnc/passwd
- mode: 0600
- force: no
-
- - name: fetch vnc passwd
- fetch:
- src: ~/.vnc/passwd
- dest: ~/.vnc/passwd.{{inventory_hostname}}
- flat: yes
-
- - name: copy vnc passwd files
- copy:
- src: ~/.vnc/passwd.{{item}}
- dest: ~/.vnc/passwd.{{item}}
- with_items: "{{ home_access_to_hosts }}"
|