index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-10-24 13:18:17 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-10-24 13:18:17 -0300 |
commit | a79559c897fe346ff51afbc54ac4a93ef194576a (patch) | |
tree | 6e1581f25964e30376007999876884c2789e3fcb | |
parent | aece3e3d2e07953b9aab2a3bb4e3ed9fd926197f (diff) |
-rwxr-xr-x | archiso/mkarchiso | 4 |
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index b8d14e1..a1ff68d 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -255,6 +255,10 @@ _cleanup () { if [[ -d "${work_dir}/root-image/var/log" ]]; then find "${work_dir}/root-image/var/log" -type f -delete fi + # Avoid journald use permanent storage (Storage=auto) + if [[ -d "${work_dir}/root-image/var/log/journal" ]]; then + rm -rf "${work_dir}/root-image/var/log/journal" + fi # Delete all temporary files and dirs if [[ -d "${work_dir}/root-image/var/tmp" ]]; then find "${work_dir}/root-image/var/tmp" -mindepth 1 -delete |