summaryrefslogtreecommitdiff
path: root/community/kvpnc/kvpnc.install
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/kvpnc/kvpnc.install
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/kvpnc/kvpnc.install')
-rw-r--r--community/kvpnc/kvpnc.install52
1 files changed, 0 insertions, 52 deletions
diff --git a/community/kvpnc/kvpnc.install b/community/kvpnc/kvpnc.install
deleted file mode 100644
index 77b839ca2..000000000
--- a/community/kvpnc/kvpnc.install
+++ /dev/null
@@ -1,52 +0,0 @@
-# arg 1: the new package version
-post_install() {
- echo "
-You will need a vpn client, these are supported:
------------------------------------------------
-- vpnc >= 0.2-rm+zomb-pre9 Cisco VPN
-- FreeS/WAN (OpenS/WAN too) >= 2.x IPSec VPN Linux 2.4/2.6
-- racoon (ipsec-tools) > = 1.x IPSec VPN Linux 2.6
-- pptpclient PPTP VPN
-- OpenVPN VPN based on SSL
-
-
-======================================================
-Howto setup KVpnc for use without root password - sudo
-======================================================
-
-1. install sudo
-
-2. edit /etc/sudoers
-
- # Cmnd alias specification
- Cmnd_Alias KVPNC = /usr/bin/kvpnc
-
- # User privilege specification
- ALL ALL=NOPASSWD:KVPNC
-
-3. edit desktop link (/usr/share/applications/kde4/kvpnc.desktop)
-
- replace the folling lines:
-
- Exec=kvpnc
- X-KDE-SubstituteUID=true
-
- with:
-
- Exec=sudo kvpnc
- X-KDE-SubstituteUID=false
-"
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-
-# arg 1: the new package version
-# arg 2: the old package version
-post_upgrade() {
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-
-# arg 1: the old package version
-post_remove() {
- which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-