From 6aa1a656ec03b237bf797bd2de48c8d35ad30c5d Mon Sep 17 00:00:00 2001 From: David Runge Date: Fri, 24 Feb 2017 15:16:19 +0100 Subject: system/update-motd.service: Fixing unescaped typo. --- system/update-motd.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/update-motd.service b/system/update-motd.service index 01871b0..a821688 100644 --- a/system/update-motd.service +++ b/system/update-motd.service @@ -11,7 +11,7 @@ ExecStart=/usr/bin/sh -c 'echo "Package updates available:" >> /tmp/motd' ExecStart=-/usr/bin/sh -c 'pacman -Qu >> /tmp/motd' ExecStart=/usr/bin/sh -c 'echo >> /tmp/motd' ExecStart=/usr/bin/sh -c 'echo "Security updates needed:" >> /tmp/motd' -ExecStart=/usr/bin/sh -c 'if [ -x /usr/bin/arch-audit ]; then arch-audit -uf "%n|%c" >> /tmp/motd ; else echo "Install arch-audit from AUR!" >> /tmp/motd ; fi' +ExecStart=/usr/bin/sh -c 'if [ -x /usr/bin/arch-audit ]; then arch-audit -uf "%n|%c" >> /tmp/motd ; else echo "Install arch-audit from AUR." >> /tmp/motd ; fi' ExecStart=/usr/bin/sh -c 'if [ -x /usr/bin/lolcat ] ; then lolcat /tmp/motd > /etc/motd ; else mv /tmp/motd /etc/motd ; fi' PrivateDevices=yes PrivateTmp=yes -- cgit v1.2.3