+fake-hwclock (0.3) unstable; urgency=low
+
+ * Really fix the cron job to exit cleanly after package removal.
+ Closes: #659254
+
+ -- Steve McIntyre <93sam@debian.org> Wed, 22 Feb 2012 10:20:26 +0000
+
fake-hwclock (0.2) unstable; urgency=low
* Move to /sbin. Closes: #658587
# Simple cron script - save the current clock periodically in case of
# a power failure or other crash
-command -v fake-hwclock >/dev/null 2>&1 && fake-hwclock save
+if (command -v fake-hwclock >/dev/null 2>&1) ; then
+ fake-hwclock save
+fi