summaryrefslogtreecommitdiffstats
path: root/tests/install.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/install.yml')
-rw-r--r--tests/install.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/install.yml b/tests/install.yml
new file mode 100644
index 0000000..03b9360
--- /dev/null
+++ b/tests/install.yml
@@ -0,0 +1,23 @@
+---
+- hosts: localhost
+ connection: local
+ roles:
+ - { name: lae.travis-lxc }
+ vars:
+ host_quantity: 1
+
+# Run the following within the containers in the inventory
+- hosts: all
+ tasks:
+ # Solution for avahi-daemon issue from https://github.com/lxc/lxc/issues/25
+ - block:
+ - name: Install avahi-daemon early on Ubuntu 16 containers
+ package:
+ name: avahi-daemon
+ ignore_errors: True
+ - name: Remove nproc from avahi-daemon.conf
+ lineinfile:
+ dest: /etc/avahi/avahi-daemon.conf
+ regexp: "^rlimit-nproc="
+ state: absent
+ when: "ansible_distribution_release == 'xenial'"