Luca Prete | 8d4e8bc | 2016-08-24 14:49:54 -0700 | [diff] [blame] | 1 | --- |
| 2 | # |
| 3 | # Customizes the machine GUI |
| 4 | # |
| 5 | - name: Creating folder for background images |
| 6 | become: yes |
| 7 | file: |
| 8 | path: /usr/share/backgrounds |
| 9 | state: directory |
| 10 | |
| 11 | - name: Downloading ONOS background |
| 12 | become: yes |
| 13 | get_url: |
| 14 | url: "{{ onos_background_url }}" |
| 15 | dest: /usr/share/lubuntu/wallpapers/onos.png |
| 16 | |
| 17 | - name: Disabling user selection at login |
| 18 | blockinfile: |
| 19 | dest: "/etc/lightdm/lightdm.conf" |
| 20 | create: yes |
| 21 | block: | |
| 22 | [SeatDefaults] |
| 23 | greeter-show-manual-login = true |
| 24 | greeter-hide-users = true |
| 25 | allow-guest = false |