diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2017-01-27 16:26:12 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-01-30 04:45:27 +1100 |
commit | 042f1e89e8c699be868720ab79bb208ea9521142 (patch) | |
tree | 79c7d5e2ae5f679091c89d6366477fcf9acafb05 /net-misc/wicd | |
parent | net-nds/phpldapadmin: remove unused patches (diff) | |
download | gentoo-042f1e89e8c699be868720ab79bb208ea9521142.tar.gz gentoo-042f1e89e8c699be868720ab79bb208ea9521142.tar.bz2 gentoo-042f1e89e8c699be868720ab79bb208ea9521142.zip |
net-misc/wicd: remove unused patch/file
Diffstat (limited to 'net-misc/wicd')
-rw-r--r-- | net-misc/wicd/files/add-wpa-psk-hex-template.patch | 29 | ||||
-rw-r--r-- | net-misc/wicd/files/wicd-init.d | 24 |
2 files changed, 0 insertions, 53 deletions
diff --git a/net-misc/wicd/files/add-wpa-psk-hex-template.patch b/net-misc/wicd/files/add-wpa-psk-hex-template.patch deleted file mode 100644 index 21daaf3e5091..000000000000 --- a/net-misc/wicd/files/add-wpa-psk-hex-template.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -U 3 -dHrN wicd-1.7.1b2/encryption/templates/active wicd-1.7.1b2.new/encryption/templates/active ---- wicd-1.7.1b2/encryption/templates/active 2010-10-29 16:36:55.000000000 +0100 -+++ wicd-1.7.1b2.new/encryption/templates/active 2011-09-13 19:58:54.000000000 +0100 -@@ -1,5 +1,6 @@ - wpa - wpa-psk -+wpa-psk-hex - wep-hex - wep-passphrase - wep-shared -diff -U 3 -dHrN wicd-1.7.1b2/encryption/templates/wpa-psk-hex wicd-1.7.1b2.new/encryption/templates/wpa-psk-hex ---- wicd-1.7.1b2/encryption/templates/wpa-psk-hex 1970-01-01 01:00:00.000000000 +0100 -+++ wicd-1.7.1b2.new/encryption/templates/wpa-psk-hex 2011-09-13 19:59:11.000000000 +0100 -@@ -0,0 +1,15 @@ -+name = WPA 1/2 (Preshared Hex Key) -+author = Thomas Kahle -+version = 1 -+require apsk *Preshared_Key -+----- -+ctrl_interface=/var/run/wpa_supplicant -+network={ -+ ssid="$_ESSID" -+ scan_ssid=$_SCAN -+ proto=WPA RSN -+ key_mgmt=WPA-PSK -+ pairwise=CCMP TKIP -+ group=CCMP TKIP -+ psk=$_APSK -+} diff --git a/net-misc/wicd/files/wicd-init.d b/net-misc/wicd/files/wicd-init.d deleted file mode 100644 index b61bf66a0491..000000000000 --- a/net-misc/wicd/files/wicd-init.d +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -opts="start stop restart" - -WICD_DAEMON=/usr/sbin/wicd -WICD_PIDFILE=/var/run/wicd/wicd.pid - -depend() { - need dbus -} - -start() { - ebegin "Starting wicd daemon" - "${WICD_DAEMON}" >/dev/null 2>&1 - eend $? -} - -stop() { - ebegin "Stopping wicd daemon" - start-stop-daemon --stop --pidfile "${WICD_PIDFILE}" - eend $? -} |