various fixes for ansible 2.3 compat
update docker role
set default for docker apt repo
fix quote
revert explicit dependencies, use ansible_user_id rather than ansible_user
don't depend on ansible role
force docker version
Change-Id: I0ba24d829db73559d7d4f16ae89a4661215f3842
diff --git a/head-node.yml b/head-node.yml
index 600d396..707507d 100644
--- a/head-node.yml
+++ b/head-node.yml
@@ -1,5 +1,15 @@
-- hosts: all
- serial: 1
+---
+# install MaaS on head node
+
+- name: run setup to gather facts
+ hosts: all, localhost
+ tasks:
+ - name: run setup
+ setup:
+
+- name: Install MaaS and supporting files on head node
+ hosts: head
roles:
- head-node
- registry
+