aboutsummaryrefslogtreecommitdiff
path: root/setup_containers.yml
diff options
context:
space:
mode:
authorjaseg <code@jaseg.net>2019-04-02 04:36:10 +0900
committerjaseg <git@jaseg.net>2019-04-02 04:36:10 +0900
commit9358a57baeeeaaf6132953f033f71469c0154604 (patch)
tree7330e339d3deb7094f49f63a925832f4f400d88e /setup_containers.yml
parent5ff592c24c2eb6e3f6fc6c6cb0f4d58740a9e69f (diff)
downloadinfra-9358a57baeeeaaf6132953f033f71469c0154604.tar.gz
infra-9358a57baeeeaaf6132953f033f71469c0154604.tar.bz2
infra-9358a57baeeeaaf6132953f033f71469c0154604.zip
gerboweb: Modularize deployment playbooks a bit
Diffstat (limited to 'setup_containers.yml')
-rw-r--r--setup_containers.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/setup_containers.yml b/setup_containers.yml
new file mode 100644
index 0000000..dd0a5ca
--- /dev/null
+++ b/setup_containers.yml
@@ -0,0 +1,25 @@
+---
+- name: Install host requisites
+ dnf:
+ name: btrfs-progs,arch-install-scripts,systemd-container,libselinux-python
+ state: latest
+
+- name: Create container dir
+ file:
+ path: /var/cache/containers
+ owner: root
+ group: root
+ mode: 0775
+ state: directory
+
+- name: Create individual containers
+ include_tasks: bootstrap_arch_container.yml
+ with_items: "{{ containers }}"
+ loop_control:
+ loop_var: container
+
+- name: Cleanup bootstrap image
+ file:
+ path: /tmp/arch-bootstrap.tar.xz
+ state: absent
+