From 411e1674cb065aedcf61bc338332e86a0b9cd478 Mon Sep 17 00:00:00 2001
From: Robert Nelson <robertcnelson@gmail.com>
Date: Tue, 28 Jan 2014 14:50:59 -0600
Subject: [PATCH] systemd: limit journal to 8M

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
---
 scripts/chroot.sh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/scripts/chroot.sh b/scripts/chroot.sh
index 15c4b468d..a672b0a26 100755
--- a/scripts/chroot.sh
+++ b/scripts/chroot.sh
@@ -363,6 +363,12 @@ cat > ${DIR}/chroot_script.sh <<-__EOF__
 		fi
 	}
 
+	tweak_systemd () {
+		if [ -f /etc/systemd/systemd-journald.conf ] ; then
+			sed -i -e 's:#SystemMaxUse=:SystemMaxUse=8M:g' /etc/systemd/systemd-journald.conf
+		fi
+	}
+
 	set_locale () {
 		pkg="locales"
 		dpkg_check
@@ -614,6 +620,7 @@ cat > ${DIR}/chroot_script.sh <<-__EOF__
 
 	install_pkg_updates
 	install_pkgs
+	tweak_systemd
 	set_locale
 	if [ "x${chroot_very_small_image}" = "xenable" ] ; then
 		run_deborphan
-- 
GitLab