blob: c80295071c7abf02a83514f0bdbe1bdab07fcfa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
# vim:ff=unix ts=2 sw=2 ai expandtab
-
hosts: dev_machine
sudo: True
vars_files:
- "../default_variables.yaml"
tasks:
- name: "Creating /opt/gnome directory"
file: path=/opt/gnome state=directory mode=777
- name: "Updating apt-file cache"
shell: apt-file update
|