summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorAlex Landau <alex.landau@xorcom.com>2009-02-01 18:09:40 +0000
committerAlex Landau <alex.landau@xorcom.com>2009-02-01 18:09:40 +0000
commit8e13d7e1fddc0e7faaae5ac640a5e05b114eea33 (patch)
tree83a3dc0bacf985de73f732db9d06530e2b57f40a /debian
parent743a1a366401973b9d5d823b2addeb61d2e698ab (diff)
rapid-tunneling:
- Added GUI password protection. - Backed out GPG. git-svn-id: svn+ssh://xorcom/home/svn/debs/components/rapid-tunneling@6682 283159da-0705-0410-b60c-f2062b4bb6ad
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog2
-rw-r--r--debian/rapid-tunneling-gui.install2
-rw-r--r--debian/rapid-tunneling-server.postinst8
3 files changed, 7 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index 1eaa77c..935d518 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,5 +2,5 @@ rapid-tunneling (1.01) unstable; urgency=low
* Initial release
- -- Alex Landau <alex.landau@xorcom.com> Sun, 14 Dec 2008 17:20:04 +0200
+ -- Alex Landau <alex.landau@xorcom.com> Sun, 01 Feb 2009 17:20:04 +0200
diff --git a/debian/rapid-tunneling-gui.install b/debian/rapid-tunneling-gui.install
index b1e7840..3e3d1f8 100644
--- a/debian/rapid-tunneling-gui.install
+++ b/debian/rapid-tunneling-gui.install
@@ -1 +1,3 @@
usr/share/rapid-tunneling/www
+etc/httpd/conf.d/rapid-tunneling.conf
+etc/rapid-tunneling/gui.htpasswd
diff --git a/debian/rapid-tunneling-server.postinst b/debian/rapid-tunneling-server.postinst
index 1a1c3fb..b1a73fa 100644
--- a/debian/rapid-tunneling-server.postinst
+++ b/debian/rapid-tunneling-server.postinst
@@ -26,10 +26,10 @@ case "$1" in
adduser --disabled-password --home $HOME_DIR \
--gecos "Rapid Tunneling support" $NEW_USER 2>/dev/null || :
fi
- LINE='. /usr/share/rapid-tunneling/support_env'
- PROFILE=$HOME_DIR/.profile
- if ! fgrep -q "$LINE" $PROFILE 2>/dev/null; then
- echo "$LINE" >> $PROFILE;
+ LINE='. /usr/share/rapid-tunneling/support_env'
+ PROFILE=$HOME_DIR/.profile
+ if ! fgrep -q "$LINE" $PROFILE 2>/dev/null; then
+ echo "$LINE" >> $PROFILE
fi
;;