From 069e5cfd858c9b263b2fd9fe7d275583e8a01e46 Mon Sep 17 00:00:00 2001 From: akanealw Date: Sat, 2 Dec 2023 07:32:16 -0600 Subject: [PATCH] remove /etc/motd --- alpine/alpine-essentials.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/alpine/alpine-essentials.sh b/alpine/alpine-essentials.sh index cb2bcb9..174c116 100644 --- a/alpine/alpine-essentials.sh +++ b/alpine/alpine-essentials.sh @@ -24,3 +24,6 @@ if [ $isInFile -eq 0 ] ip address show eth0 | awk '/inet / {print $2}' | cut -d/ -f1 >> /etc/issue echo "" >> /etc/issue fi + +# remove all motd +rm /etc/motd > /dev/null 2>&1