wok annotate ocsreports/receipt @ rev 5195

slitaz-doc: fix version for 3.0
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 28 17:16:33 2010 +0200 (2010-03-28)
parents 6cf13fdfcede
children 93d0091756cf
rev   line source
erjo@3676 1 # SliTaz package receipt.
erjo@3676 2
erjo@3676 3 PACKAGE="ocsreports"
erjo@3676 4 VERSION="1.02.1"
erjo@3676 5 CATEGORY="network"
erjo@3676 6 SHORT_DESC="Inventory and package deployement system"
erjo@3676 7 MAINTAINER="pascal.bellard@slitaz.org"
erjo@3676 8 DEPENDS="php-apache php-mysql mysql"
erjo@3676 9 WANTED="ocsinventory"
erjo@3676 10 SOURCE="OCSNG_UNIX_SERVER"
erjo@3676 11 TARBALL="${SOURCE}_${VERSION}.tar.gz"
erjo@3676 12 WEB_SITE="http://www.ocsinventory-ng.org/"
jozee@4970 13 TAGS="system administration"
erjo@3676 14
erjo@3676 15 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@3676 16 genpkg_rules()
erjo@3676 17 {
erjo@3676 18 src=$WOK/$WANTED/$SOURCE-$VERSION
erjo@3676 19
erjo@3676 20 mkdir -p $fs/usr/share \
erjo@3676 21 $fs/etc/ocsreports
erjo@3676 22
erjo@3676 23 cp -a $WOK/$WANTED/${SOURCE}-${VERSION}/${PACKAGE} $fs/usr/share/
erjo@3676 24 cat > $fs/etc/ocsreports/dbconfig.inc.php <<EOT
erjo@3676 25 <?php
erjo@3676 26 \$_SESSION["SERVEUR_SQL"]="localhost";
erjo@3676 27 \$_SESSION["COMPTE_BASE"]="ocs";
erjo@3676 28 \$_SESSION["PSWD_BASE"]="ocs";
erjo@3676 29 ?>
erjo@3676 30 EOT
erjo@3676 31
erjo@3676 32 install -o root -g www -m 0755 $src/Apache/binutils/ipdiscover-util.pl \
erjo@3676 33 $fs/usr/share/ocsreports/ipdiscover-util.pl
erjo@3676 34
erjo@3676 35 rm -f $fs/usr/share/${PACKAGE}/dbconfig.inc.php
erjo@3676 36 cd $fs/usr/share/${PACKAGE} ; ln -s /etc/ocsreports/dbconfig.inc.php ; cd -
erjo@3676 37
erjo@3676 38 # Remove doc file.
erjo@3676 39 rm -f $fs/usr/share/ocsreports/files/*.pdf
erjo@3676 40 }
erjo@3676 41
erjo@3676 42 post_install()
erjo@3676 43 {
erjo@3676 44 # Configure apache server
erjo@3676 45 if [ -f $1/etc/apache/httpd.conf ]; then
erjo@3676 46 if [ ! -f $1/etc/apache/conf.d/$PACKAGE ]; then
erjo@3676 47 cat > $1/etc/apache/conf.d/$PACKAGE <<EOT
erjo@3676 48 <IfModule mod_alias.c>
erjo@3676 49 Alias /$PACKAGE /usr/share/$PACKAGE/
erjo@3676 50 </IfModule>
erjo@3676 51 <Directory "/usr/share/$PACKAGE">
erjo@3676 52 Options Indexes FollowSymLinks
erjo@3676 53 AllowOverride None
erjo@3676 54 Order deny,allow
erjo@3676 55 Allow from all
erjo@3676 56 </Directory>
erjo@3676 57
erjo@3676 58 EOT
erjo@3676 59 if [ -z "$1" ]; then
erjo@3676 60 # Start Web server.
erjo@3676 61 test -f /var/run/apache/httpd.pid && \
erjo@3676 62 ( kill -0 $(cat /var/run/apache/httpd.pid) && /etc/init.d/apache restart )
erjo@3676 63 fi
erjo@3676 64 fi
erjo@3676 65 fi
erjo@3676 66
erjo@3676 67 # Configure every thing for ocsweb.
erjo@3676 68 if [ -z $1 ]; then
erjo@3676 69 if ( ! mysqladmin -s ping > /dev/null ); then
erjo@3676 70 echo "Starting MySQL server"
erjo@3676 71 ( /etc/init.d/mysql start ; status ) || exit
erjo@3676 72 sleep 4 #let the mysql daemon start
erjo@3676 73 fi
erjo@3676 74 if ( ! mysql -Be 'show databases' | grep -q ocsweb ); then
erjo@3676 75 echo -n "Create $PACKAGE database and schema"
erjo@3676 76 # mysql -Be "create database ocsweb" ; status
erjo@3676 77 mysql -f -s -u root < /usr/share/$PACKAGE/files/ocsbase.sql > /dev/null 2>&1
erjo@3676 78 # We suppose that ocs user does not exist.
erjo@3676 79 # It may be false.
erjo@3676 80 echo -n "Create user ocs with password ocs"
erjo@3676 81 mysql -Be "grant all privileges on ocsweb.* to 'ocs'@'localhost'
erjo@3676 82 identified by 'ocs'" ; status
erjo@3676 83 fi
erjo@3676 84
erjo@3676 85 fi
erjo@3676 86 }
erjo@3676 87
erjo@3676 88 post_remove()
erjo@3676 89 {
erjo@3676 90 echo -n "Would you like to remove data and database files.(y/n) "
erjo@3676 91 read answer
erjo@3676 92
erjo@3676 93 case $answer in
erjo@3676 94 y|Y)
erjo@3676 95 echo -n "Removing data directories..."
erjo@3676 96 rm -rf /usr/share/ocsreports
erjo@3676 97 if ( mysql -Be 'show databases' | grep -q ocsweb ); then
erjo@3676 98 echo -n "Deleting ocsreports database;"
erjo@3676 99 mysql -u root -Be "drop database ocsweb;" ; status
erjo@3676 100 echo -n "Delete user ocs"
erjo@3676 101 mysql -u root -Be "delete from mysql.db where user=ocs;" ; status
erjo@3676 102 fi
erjo@3676 103 unset $answer
erjo@3676 104 ;;
erjo@3676 105 *)
erjo@3676 106 ;;
erjo@3676 107 esac
erjo@3676 108
erjo@3676 109 }
erjo@3676 110