From 3cbb28408f4537fbc7beaa7148458f0db3f02baf Mon Sep 17 00:00:00 2001 From: James Rayner Date: Wed, 18 Nov 2009 13:45:35 +1100 Subject: FS#13418,FS#12505 - add zsh/bash completion --- contrib/ifplugd.action | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 contrib/ifplugd.action (limited to 'contrib/ifplugd.action') diff --git a/contrib/ifplugd.action b/contrib/ifplugd.action deleted file mode 100755 index 720b576..0000000 --- a/contrib/ifplugd.action +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# -# /etc/ifplugd/ifplugd.action script for Arch Linux -# can replace the one that comes with extra/ifplugd - -# . /etc/rc.conf -# . /etc/rc.d/functions - -case "$2" in - up) - if [ "${1:0:3}" == eth ]; then - /usr/bin/netcfg "myethernet" # replace with name of your desired profile - fi - ;; - down) - /usr/bin/netcfg iface-down "$1" - /sbin/ifconfig "$1" down # note that we'll return 0 even if the netcfg call failed, e.g. because iface was already down - # hence no "failure" messages to syslog - ;; - *) - echo "Wrong arguments" > /dev/stderr - exit 1 - ;; -esac - -# vim: ft=sh ts=4 et sw=4: -- cgit v1.2.3-24-g4f1b