View | Details | Raw Unified | Return to bug 21440
Collapse All | Expand All

(-)a/debian/scripts/koha-create (-1 / +1 lines)
Lines 686-692 then Link Here
686
    if [ -e "$DEFAULTSQL" ]
686
    if [ -e "$DEFAULTSQL" ]
687
    then
687
    then
688
        # Populate the database with default content.
688
        # Populate the database with default content.
689
        zcat "$DEFAULTSQL" |
689
        zcat -f "$DEFAULTSQL" |
690
        sed "s/__KOHASITE__/koha_$name/g" |
690
        sed "s/__KOHASITE__/koha_$name/g" |
691
        mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" "$mysqldb"
691
        mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" "$mysqldb"
692
692
(-)a/debian/templates/koha-sites.conf (-1 / +1 lines)
Lines 17-22 OPACSUFFIX="" Link Here
17
#
17
#
18
# DEFAULTSQL: filename
18
# DEFAULTSQL: filename
19
# Specify an SQL file with default data to load during instance creation
19
# Specify an SQL file with default data to load during instance creation
20
# The SQL file can be optionally compressed with gzip
20
# default: (empty)
21
# default: (empty)
21
DEFAULTSQL=""
22
DEFAULTSQL=""
22
23
23
- 

Return to bug 21440