#!/bin/sh set -e if [ x"$1" = "xconfigure" ]; then # create leguichet-in, leguichet-transit and leguichet-out users if necessary if ! getent passwd leguichet-in >/dev/null ; then adduser --quiet --system --no-create-home --disabled-password \ --home /nonexistent --group --gecos "leguichet-in user" leguichet-in fi if ! getent passwd leguichet-out >/dev/null ; then adduser --quiet --system --no-create-home --disabled-password \ --home /nonexistent --group --gecos "leguichet-out user" leguichet-out fi if ! getent passwd leguichet-transit >/dev/null ; then adduser --quiet --system --no-create-home --disabled-password \ --home /nonexistent --group --gecos "leguichet-transit user" leguichet-out fi fi #DEBHELPER#