diff options
author | An-Cheng Huang <ancheng@vyatta.com> | 2007-12-05 11:26:03 -0800 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2007-12-05 11:26:03 -0800 |
commit | 2f9ea52c4ed0415509dcdd8c786da773cefc041b (patch) | |
tree | 983ec2405e31c207be997a1934a2b617af4e4cca /debian/vyatta-op.postrm.in | |
parent | 4dbba52a5b7e97d55ea7c4f957f594204350b9b2 (diff) | |
download | vyatta-op-2f9ea52c4ed0415509dcdd8c786da773cefc041b.tar.gz vyatta-op-2f9ea52c4ed0415509dcdd8c786da773cefc041b.zip |
use symlink instead of wrapper for ethtool
Diffstat (limited to 'debian/vyatta-op.postrm.in')
-rw-r--r-- | debian/vyatta-op.postrm.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/debian/vyatta-op.postrm.in b/debian/vyatta-op.postrm.in new file mode 100644 index 0000000..75d77ca --- /dev/null +++ b/debian/vyatta-op.postrm.in @@ -0,0 +1,11 @@ +#!/bin/bash + +prefix=@prefix@ +exec_prefix=@exec_prefix@ +bindir=@bindir@ + +if [ "$1" = "purge" ]; then + # remove added symlinks + rm -f ${bindir}/sudo-users/ethtool +fi + |