[X2Go-Commits] x2goserver.git - build-baikal (branch) updated: 3.0.99-2-6-g881eb49

X2Go dev team git-admin at x2go.org
Fri Jan 3 20:50:28 CET 2014


The branch, build-baikal has been updated
       via  881eb49831cf84440670f3fb8a10cf116c2a1e01 (commit)
      from  72460da5e87334334671942039351e09ea8cc857 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 881eb49831cf84440670f3fb8a10cf116c2a1e01
Author: Reinhard Tartler <siretart at tauware.de>
Date:   Wed Feb 16 08:48:48 2011 +0100

    remove unused preinst.bc file

-----------------------------------------------------------------------

Summary of changes:
 debian/preinst.bc |   94 -----------------------------------------------------
 1 file changed, 94 deletions(-)
 delete mode 100755 debian/preinst.bc

The diff of changes is:
diff --git a/debian/preinst.bc b/debian/preinst.bc
deleted file mode 100755
index 054e1f1..0000000
--- a/debian/preinst.bc
+++ /dev/null
@@ -1,94 +0,0 @@
-#!/bin/bash
-# preinst script for x2goserver
-#
-# see: dh_installdeb(1)
-
-#set -e
-
-# summary of how this script can be called:
-#        * <new-preinst> `install'
-#        * <new-preinst> `install' <old-version>
-#        * <new-preinst> `upgrade' <old-version>
-#        * <old-preinst> `abort-upgrade' <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-case "$1" in
-    install|upgrade)
-    VERSION=$2
-    V1=`echo $VERSION|awk '{split($0,a,"."); print a[1]}'`
-    V2=`echo $VERSION|awk '{split($0,a,"."); print a[2]}'`
-    DV=`echo $VERSION|awk '{split($0,a,"."); print a[3]}'`
-    V3=`echo $DV|awk '{split($0,a,"-"); print a[1]}'`
-    V4=`echo $DV|awk '{split($0,a,"-"); print a[2]}'`
-    if [ "$V1" == "" ]
-    then
-        V1=0
-    fi
-    
-    if [ "$V2" == "" ]
-    then
-        V2=0
-    fi
-    
-    if [ "$V3" == "" ]
-    then
-        V3=0
-    fi
-    
-    if [ "$V4" == "" ]
-    then
-        V4=0
-    fi
-    
-    VSUM=$(($V1*100000 + $V2*10000 + $V3*100 +$V4))
-    if [ $(( $VSUM < 200117 && $VSUM != 0)) != 0 ] 
-    then
-        echo "
-
-
-
-----------------
-Attention:
-
-you are upgrading to a newer version of x2goserver. Please close all running x2go sessions and make sure that nobody will login during the installation procedure. You'll need to import a new database layout for this version, so please start the import script /usr/lib/x2go/script/x2gocreatebase.sh on your data base server after the packages have been installed.
-----------------
-
-Press Enter to continue
-
-"
-      read
-    fi
-    X2GOGRP=`getent group | grep x2gousers`
-    
-    if [ "$X2GOGRP" == "" ]
-    then 
-         addgroup --system x2gousers
-    fi
-    
-    X2GOUSR=`getent passwd | grep x2gouser`
-    
-    if [ "$X2GOUSR" == "" ]
-    then 
-         useradd -r -d /var/db/x2go/ x2gouser
-    fi
-    
-    ;;
-
-    abort-upgrade)
-    ;;
-
-    *)
-        echo "preinst 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
-
-


hooks/post-receive
-- 
x2goserver.git (X2Go Server)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goserver.git" (X2Go Server).




More information about the x2go-commits mailing list