From 01815348667fc8a7f74ca25c986f47d7bea6f88f Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Tue, 14 Jun 2011 12:52:11 +0000 Subject: rapid-tunneling: debian: create users in the -gui Create and remove the special "user" with UID 0 in the GUI package. That ugliness only belongs there. git-svn-id: svn+ssh://xorcom/home/svn/debs/components/rapid-tunneling@9428 283159da-0705-0410-b60c-f2062b4bb6ad --- debian/rapid-tunneling-gui.postinst | 5 +++++ debian/rapid-tunneling-gui.postrm | 16 +++++++++++++ debian/rapid-tunneling.postinst | 45 ------------------------------------- debian/rapid-tunneling.postrm | 16 ------------- 4 files changed, 21 insertions(+), 61 deletions(-) create mode 100644 debian/rapid-tunneling-gui.postrm delete mode 100644 debian/rapid-tunneling.postinst delete mode 100644 debian/rapid-tunneling.postrm diff --git a/debian/rapid-tunneling-gui.postinst b/debian/rapid-tunneling-gui.postinst index 441bead..a84148b 100644 --- a/debian/rapid-tunneling-gui.postinst +++ b/debian/rapid-tunneling-gui.postinst @@ -25,6 +25,11 @@ $user ALL=(rapid-tunneling) NOPASSWD:/usr/sbin/rapid-tunneling-status" case "$1" in configure) + # add a user with uid=gid=0 + if ! getent passwd rapid-tunneling >/dev/null ; then + useradd -d /var/lib/rapid-tunneling/home -m -u 0 -g 0 -o rapid-tunneling + fi + # FIXME: use sudoers.d if ! fgrep -q "$TEXT" $SUDOERS; then echo "$TEXT" >> $SUDOERS; fi # FIXME: reloading httpd ;; diff --git a/debian/rapid-tunneling-gui.postrm b/debian/rapid-tunneling-gui.postrm new file mode 100644 index 0000000..89276e5 --- /dev/null +++ b/debian/rapid-tunneling-gui.postrm @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +case "$1" in + purge) + userdel -r rapid-tunneling || : + rm -rf /var/lib/rapid-tunneling/home + ;; +esac + +#DEBHELPER# + +exit 0 + + diff --git a/debian/rapid-tunneling.postinst b/debian/rapid-tunneling.postinst deleted file mode 100644 index bebf14f..0000000 --- a/debian/rapid-tunneling.postinst +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -# postinst script for rapid-tunneling -# -# see: dh_installdeb(1) - -set -e - -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-remove' -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package - - -case "$1" in - configure) - # add a user with uid=gid=0 - if ! getent passwd rapid-tunneling >/dev/null ; then - useradd -d /var/lib/rapid-tunneling/home -m -u 0 -g 0 -o rapid-tunneling - fi - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - - diff --git a/debian/rapid-tunneling.postrm b/debian/rapid-tunneling.postrm deleted file mode 100644 index 89276e5..0000000 --- a/debian/rapid-tunneling.postrm +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh - -set -e - -case "$1" in - purge) - userdel -r rapid-tunneling || : - rm -rf /var/lib/rapid-tunneling/home - ;; -esac - -#DEBHELPER# - -exit 0 - - -- cgit v1.2.3