Explorar o código

Don't hardcode paths in apt.cron.daily

Matt Zimmerman %!s(int64=22) %!d(string=hai) anos
pai
achega
2288cf7715
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      debian/apt.cron.daily

+ 2 - 2
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