0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-28 16:24:56 +01:00
mongodb/debian/mongodb-enterprise-server.postinst
Ernie Hershey e0af66d3ac SERVER-11765 Create stable packaging files
These are all based on equivalent "-unstable" files
that have been used for 2.5 packages. The only differences
are removing "-unstable" from package, directory, and file names, and
replacing normal packages in conflicts with unstable packages.
2013-12-20 15:51:05 -05:00

56 lines
1.4 KiB
Bash

#!/bin/sh
# postinst script for mongodb
#
# see: dh_installdeb(1)
set -e
# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <postinst> `abort-remove'
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package
case "$1" in
configure)
# create a mongodb group and user
if ! getent passwd mongodb >/dev/null 2>&1; then
adduser --system --no-create-home mongodb
addgroup --system mongodb
adduser mongodb mongodb
fi
# create db -- note: this should agree with dbpath in mongod.conf
mkdir -p /var/lib/mongodb
chown -R mongodb:mongodb /var/lib/mongodb
# create logdir -- note: this should agree with logpath in mongod.conf
mkdir -p /var/log/mongodb
chown -R mongodb:mongodb /var/log/mongodb
;;
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