summaryrefslogtreecommitdiff
path: root/debian/apt.cron.daily
diff options
context:
space:
mode:
Diffstat (limited to 'debian/apt.cron.daily')
-rw-r--r--debian/apt.cron.daily4
1 files changed, 2 insertions, 2 deletions
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