From: Matt Zimmerman Date: Sun, 14 Nov 2004 00:50:57 +0000 (+0000) Subject: Don't hardcode paths in apt.cron.daily X-Git-Tag: 0.7.24ubuntu1~413 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/2288cf77157ae18648ed5643f9f4f4a7f89fb22a?ds=inline;hp=-c Don't hardcode paths in apt.cron.daily --- 2288cf77157ae18648ed5643f9f4f4a7f89fb22a diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily index 67b58747e..a97222095 100644 --- a/debian/apt.cron.daily +++ b/debian/apt.cron.daily @@ -33,8 +33,8 @@ fi # 1 (false) System is not on mains power # 255 (false) Power status could not be determined # Desktop systems always return 255 it seems -if [ -x /usr/bin/on_ac_power ]; then - /usr/bin/on_ac_power +if which on_ac_power >/dev/null; then + on_ac_power if [ $? -eq 1 ]; then exit 0 fi