From 30b6464928eb6e05d2511ce38405dde5b6915abd Mon Sep 17 00:00:00 2001 From: David Personette Date: Wed, 19 Aug 2015 06:28:21 -0400 Subject: [PATCH] mute the output of changing timezones --- samba.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samba.sh b/samba.sh index d1d13b9..e8f2056 100755 --- a/samba.sh +++ b/samba.sh @@ -64,7 +64,7 @@ timezone() { local timezone="${1:-EST5EDT}" if [[ $(cat /etc/timezone) != $timezone ]]; then echo "$timezone" > /etc/timezone ln -sf /usr/share/zoneinfo/$timezone /etc/localtime - dpkg-reconfigure -f noninteractive tzdata + dpkg-reconfigure -f noninteractive tzdata >/dev/null 2>&1 fi }