X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=debian%2Fcacert-gigi.postinst;fp=debian%2Fcacert-gigi.postinst;h=0000000000000000000000000000000000000000;hb=bccd4cc0dba0f89aa045b113bac46eb8cc1dab4e;hp=519ecc489894aba810fb642782df6f78e6e4e1de;hpb=c9ed09f0007fc2c813815be927a5a24b23dab83c;p=gigi.git diff --git a/debian/cacert-gigi.postinst b/debian/cacert-gigi.postinst deleted file mode 100644 index 519ecc48..00000000 --- a/debian/cacert-gigi.postinst +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -# postinst script for cacert-gigi -# -# 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) - if [ -f /usr/share/debconf/confmodule ]; then - . /usr/share/debconf/confmodule - db_get cacert-gigi/fetch-locales-command - $RET - else - gigi fetch-locales - fi - adduser --system gigi - ;; - - abort-upgrade|abort-remove|abort-deconfigure) - ;; - - *) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# The "hash DEBHELPER hash" special token is deliberately *not* included; -# gigi cannot start out of the box, -# and this package installs multiple services that cannot be used simultaneously, -# so we really don't want dh_installdeb to add code by -# dh_systemd_enable, dh_installinit and dh_systemd_start here. - -exit 0