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
No related branches found
No related tags found
1 merge request!5guest-overlay: Use OverlayFS instead of AuFS
......@@ -19,7 +19,9 @@
<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 -->
......
......@@ -22,17 +22,16 @@
tags:
- guest-overlay
- name: ensure aufs and pam-mount are available
- name: ensure pam-mount available
apt:
name:
- aufs-tools
- libpam-mount
state: present
tags:
- guest-overlay
- packages
- name: ensure aufs mountpoints are available
- name: ensure overlayfs mountpoints are available
file:
path: "/guests/{{ item }}"
state: directory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment