packages/gms-debian/gms.postinst
author renatofilho
Fri Feb 01 14:30:21 2008 +0000 (2008-02-01)
branchtrunk
changeset 905 d2d226b5a4bd
permissions -rw-r--r--
[svn r911] created release 0.7; moved debian dir to packages project
renatofilho@905
     1
#! /bin/sh
renatofilho@905
     2
# postinst script for gms
renatofilho@905
     3
renatofilho@905
     4
set -e
renatofilho@905
     5
renatofilho@905
     6
case "$1" in
renatofilho@905
     7
  configure)
renatofilho@905
     8
    if ! getent passwd gms >/dev/null; then
renatofilho@905
     9
      adduser --disabled-password  --quiet --system \
renatofilho@905
    10
        --home /var/gms-media \
renatofilho@905
    11
        --gecos "GMS media dir" --group gms
renatofilho@905
    12
    fi
renatofilho@905
    13
    if ! getent passwd gms | grep -q /var/run/gms; then
renatofilho@905
    14
        usermod -d /var/gms-media gms
renatofilho@905
    15
    fi
renatofilho@905
    16
    update-rc.d gmsd defaults
renatofilho@905
    17
    invoke-rc.d gmsd start
renatofilho@905
    18
  ;;
renatofilho@905
    19
  abort-upgrade|abort-remove|abort-deconfigure)
renatofilho@905
    20
  ;;
renatofilho@905
    21
  *)
renatofilho@905
    22
    echo "postinst called with unknown argument \`$1'" >&2
renatofilho@905
    23
    exit 1
renatofilho@905
    24
  ;;
renatofilho@905
    25
esac
renatofilho@905
    26
renatofilho@905
    27
#DEBHELPER#
renatofilho@905
    28
renatofilho@905
    29
exit 0