]> git.proxmox.com Git - corosync-pve.git/blame - debian/corosync-pve.postinst
bump version to 2.3.4-2
[corosync-pve.git] / debian / corosync-pve.postinst
CommitLineData
930e051d
DM
1#!/bin/sh
2# postinst script for corosync
3#
4# see: dh_installdeb(1)
5
6set -e
7
8# for details, see http://www.debian.org/doc/debian-policy/ or
9# the debian-policy package
10
11case "$1" in
12 configure)
13
14 # create the ais user
15 adduser --quiet --group --system --no-create-home ais
16
17 ;;
18
19 abort-upgrade|abort-remove|abort-deconfigure)
20 ;;
21
22 *)
23 echo "postinst called with unknown argument \`$1'" >&2
24 exit 1
25 ;;
26esac
27
28# dh_installdeb will replace this with shell code automatically
29# generated by other debhelper scripts.
30
31#DEBHELPER#
32
33exit 0