chiark / gitweb /
Remove obsolete and broken dist target in root Makefile.
[userv-utils.git] / debian / userv-dyndns.postinst
1 # Copyright 1996-2013 Ian Jackson <ijackson@chiark.greenend.org.uk>
2 # Copyright 1998 David Damerell <damerell@chiark.greenend.org.uk>
3 # Copyright 1999,2003
4 #    Chancellor Masters and Scholars of the University of Cambridge
5 # Copyright 2010 Tony Finch <fanf@dotat.at>
6 #
7 # This is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with userv-utils; if not, see http://www.gnu.org/licenses/.
19
20 #!/bin/sh
21 set -e
22
23 #DEBHELPER#
24
25 user="$(sed -n '/^[a-z]/{p;q;}' /etc/userv/dyndns-service-users)"
26
27 if [ "$user" ]; then
28         adduser --system --quiet --group --gecos 'userv dyndns' \
29                 --home /etc/userv --no-create-home --shell /bin/false $user
30 fi