diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-08 13:23:21 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-11-08 13:23:21 -0800 |
commit | 6285193ed1a9b4cf2b85ce6d4f44942663137c48 (patch) | |
tree | 2c128d6863ce9df8fb782a216b9d5f6ff2a0329f /debian | |
parent | 69268663f9fb58fd6d60cc866f8e4cbe2f77ea47 (diff) | |
download | vyatta-cfg-system-6285193ed1a9b4cf2b85ce6d4f44942663137c48.tar.gz vyatta-cfg-system-6285193ed1a9b4cf2b85ce6d4f44942663137c48.zip |
Fix path to ethtool
In Debian Squeeze ethtool is in /sbin
Diffstat (limited to 'debian')
-rw-r--r-- | debian/vyatta-cfg-system.postinst.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/vyatta-cfg-system.postinst.in b/debian/vyatta-cfg-system.postinst.in index 0d2c29e5..5346de90 100644 --- a/debian/vyatta-cfg-system.postinst.in +++ b/debian/vyatta-cfg-system.postinst.in @@ -83,11 +83,11 @@ Cmnd_Alias IPFLUSH = /sbin/ip route flush cache, \ /sbin/ip -f inet6 route flush cache *,\ /sbin/ip -f inet6 neigh flush to *, \ /sbin/ip -f inet6 neigh flush dev * -Cmnd_Alias ETHTOOL = /usr/sbin/ethtool -p *, \ - /usr/sbin/ethtool -S *, \ - /usr/sbin/ethtool -a *, \ - /usr/sbin/ethtool -c *, \ - /usr/sbin/ethtool -i * +Cmnd_Alias ETHTOOL = /sbin/ethtool -p *, \ + /sbin/ethtool -S *, \ + /sbin/ethtool -a *, \ + /sbin/ethtool -c *, \ + /sbin/ethtool -i * Cmnd_Alias DISK = /usr/bin/lsof, /sbin/fdisk -l *, /sbin/sfdisk -d * Cmnd_Alias DATE = /bin/date, /usr/sbin/ntpdate Cmnd_Alias PPPOE_CMDS = /sbin/pppd, /sbin/poff, /usr/sbin/pppstats |