~ubuntu-branches/ubuntu/intrepid/otrs2/intrepid-updates

« back to all changes in this revision

Viewing changes to debian/otrs2.postinst

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2006-06-20 23:35:00 UTC
  • Revision ID: package-import@ubuntu.com-20060620233500-5qzdidoa53xdigt2
Tags: 2.0.4p01-6
removed the PDF manuals because they will be provided with source code by
a separate package 'otrs2-doc'

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
OTRSHOME=/usr/share/otrs
 
6
 
 
7
getent passwd otrs || \
 
8
   adduser --system --home $OTRSHOME --no-create-home --ingroup www-data otrs
 
9
 
 
10
$OTRSHOME/bin/SetPermissions.sh $OTRSHOME otrs www-data www-data www-data
 
11
 
 
12
#DEBHELPER#
 
13