~ubuntu-branches/ubuntu/trusty/sabayon/trusty

« back to all changes in this revision

Viewing changes to debian/sabayon.postinst

  • Committer: Bazaar Package Importer
  • Author(s): Scott Balneaves
  • Date: 2010-01-20 21:52:03 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20100120215203-ffh336nhyy52lqsn
Tags: 2.29.5-0ubuntu1
New upstream release, "Chutney and Oratory"

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
set -e
4
4
 
5
5
if [ "$1" = "configure" ] ; then
6
 
    if [ "$1" = "configure" ] ; then
7
 
        if ! id sabayon-admin >/dev/null 2>&1; then
8
 
            adduser --system --group --home /var/run/sabayon-admin \
9
 
                sabayon-admin
10
 
        fi
 
6
    if ! id sabayon-admin >/dev/null 2>&1; then
 
7
        adduser --system --group --home /var/run/sabayon-admin \
 
8
            sabayon-admin
11
9
    fi
12
10
fi
13
11