flavors view dolibarr/rootfs/etc/mysql.d/initdb.sh @ rev 223

Tiny edits: we grow to 2015 and moved from labs.slitaz.org to bugs.slitaz.org; convert html to HTML5 UTF-8.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 03 17:08:28 2015 +0300 (2015-04-03)
parents 027d6ceef993
children 81dfe267681e
line source
1 #!/bin/sh
2 #
3 # dolibarr.sh, Configuration et installation de Dolibarr.
4 #
5 # (C) 2007-2015 SliTaz - GNU General Public License v3.
6 #
7 # Author : Eric Joseph-Alexandre <erjo@slitaz.org>
9 PACKAGE=Dolibarr
10 VER=0.1
11 PATH=/bin:/sbin:/usr/bin
12 CACHE=/var/slitaz
13 LOG=/var/log/$(basename $0).log
15 # Create cache directory if necessary
16 if [ ! -d $CACHE ]; then
17 echo "Init cache/var directory" > $LOG
18 mkdir -p $CACHE
19 echo "Install/restore $PACKAGE database(s)"
20 tazpkg reconfigure dolibarr
21 fi