aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Runge <dave@sleepmap.de>2017-02-24 15:16:19 +0100
committerDavid Runge <dave@sleepmap.de>2017-02-24 15:16:19 +0100
commit6aa1a656ec03b237bf797bd2de48c8d35ad30c5d (patch)
tree0e0c94aab9e6a2f41149e36f01ab7708de16ddad
parent0b471f32d6455ed75838481cbe634ffab5dfbbd0 (diff)
downloaduenv-6aa1a656ec03b237bf797bd2de48c8d35ad30c5d.tar.gz
uenv-6aa1a656ec03b237bf797bd2de48c8d35ad30c5d.tar.bz2
uenv-6aa1a656ec03b237bf797bd2de48c8d35ad30c5d.tar.xz
uenv-6aa1a656ec03b237bf797bd2de48c8d35ad30c5d.zip
system/update-motd.service: Fixing unescaped typo.
-rw-r--r--system/update-motd.service2
1 files changed, 1 insertions, 1 deletions
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