Skip to content
Snippets Groups Projects
Commit 77d1d9e5 authored by Ciarán McKenna's avatar Ciarán McKenna Committed by Thomas Schneider
Browse files

guest-overlay: Use OverlayFS instead of AuFS

parent 4c06ddf6
Branches
No related tags found
1 merge request!5guest-overlay: Use OverlayFS instead of AuFS
This commit is part of merge request !5. Comments created here will be created in the context of that merge request.
...@@ -19,7 +19,9 @@ ...@@ -19,7 +19,9 @@
<volume sgrp="gast" fstype="tmpfs" path="tmpfs" mountpoint="/guests/temporary" options="noatime,noexec,rw" /> <volume sgrp="gast" fstype="tmpfs" path="tmpfs" mountpoint="/guests/temporary" options="noatime,noexec,rw" />
<volume path="none" sgrp="gast" fstype="aufs" mountpoint="/guests/home" options="br:/guests/temporary=rw:/guests/provision=ro,udba=reval" /> <volume sgrp="gast" fstype="tmpfs" path="tmpfs" mountpoint="/guests/temporary_workdir" options="noatime,noexec,rw" />
<volume path="none" sgrp="gast" fstype="overlay" mountpoint="/guests/home" options="lowerdir=/guests/provision,upperdir=/guests/temporary,workdir=/guests/temporary_workdir" />
<!-- pam_mount parameters: General tunables --> <!-- pam_mount parameters: General tunables -->
......
...@@ -22,17 +22,16 @@ ...@@ -22,17 +22,16 @@
tags: tags:
- guest-overlay - guest-overlay
- name: ensure aufs and pam-mount are available - name: ensure pam-mount available
apt: apt:
name: name:
- aufs-tools
- libpam-mount - libpam-mount
state: present state: present
tags: tags:
- guest-overlay - guest-overlay
- packages - packages
- name: ensure aufs mountpoints are available - name: ensure overlayfs mountpoints are available
file: file:
path: "/guests/{{ item }}" path: "/guests/{{ item }}"
state: directory state: directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment