apt-update (0.8) stable; urgency=low
* Don't use echo -e; printf is better.
UPDATE_LIST="$UPDATE_LIST\n\nPackage(s) downloaded and ready to install\n"
fi
- echo -e "$UPDATE_LIST"
+ printf "$UPDATE_LIST\n"
fi
+apt-update (0.8) stable; urgency=low
+
+ * Don't use echo -e; printf is better.
+
+ -- Steve McIntyre <steve@einval.com> Sat, 20 Nov 2010 13:30:42 +0000
+
apt-update (0.7) stable; urgency=low
* Add a new script apt-update, factoring out most of the cron job
dh_fixperms
dh_md5sums
dh_builddeb
+dh_installdirs
+dh_installdocs
+dh_installchangelogs
+dh_movefiles
+dh_strip
+dh_compress
+dh_gencontrol
+dh_installdeb
+dh_fixperms
+dh_md5sums
+dh_builddeb
bcccc3c8bc288beafafd9e3ace48066c usr/share/doc/apt-update/changelog.gz
ecba137529ebdecd0e9196e88a6ba3aa usr/share/doc/apt-update/copyright
d890efb3264a5a274185afaac973e251 usr/sbin/apt-dist-upgrade
-54760478bb495fa2b1c91e375dc4e263 usr/sbin/apt-update
+860a1e1907346e3f5ef8537c5fda6ef5 usr/sbin/apt-update
if [ "$UPDATE_LIST"x != ""x ] ; then
# Now send mail to the local admin
UPDATE_LIST="On $HOST the following packages need upgrading:\n$UPDATE_LIST"
- echo -e $UPDATE_LIST | mail -s "$HOST needs software updates" $MAILTO
+ echo -e "$UPDATE_LIST" | mail -s "$HOST needs software updates" $MAILTO
fi
UPDATE_LIST="$UPDATE_LIST\n\nPackage(s) downloaded and ready to install\n"
fi
- echo -e $UPDATE_LIST
+ echo -e "$UPDATE_LIST"
fi