Skip to content
Snippets Groups Projects
Commit b7d31b77 authored by Ciarán McKenna's avatar Ciarán McKenna
Browse files

guest-overlay: Use OverlayFS instead of AuFS

parent 83060540
No related branches found
No related tags found
No related merge requests found
Pipeline #3288 passed
...@@ -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