File: postinst

package info (click to toggle)
elida 0.3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 84 kB
  • ctags: 4
  • sloc: sh: 355; makefile: 36
file content (15 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

. /usr/share/debconf/confmodule

if [ "$1" = "configure" ]; then
    update-rc.d elida start 20 2 3 4 5 . stop 20 0 1 6 . start 44 S . >/dev/null
#   if [ ! -d /usr/src/elida ]; then
#       mkdir /usr/src/elida
#       chmod 2775 /usr/src/elida
#       chgrp src /usr/src/elida
#   fi
fi

exit 0