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

(-)a/debian/scripts/koha-create (-1 / +1 lines)
Lines 684-690 then Link Here
684
    if [ -e "$DEFAULTSQL" ]
684
    if [ -e "$DEFAULTSQL" ]
685
    then
685
    then
686
        # Populate the database with default content.
686
        # Populate the database with default content.
687
        zcat "$DEFAULTSQL" |
687
        zcat -f "$DEFAULTSQL" |
688
        sed "s/__KOHASITE__/koha_$name/g" |
688
        sed "s/__KOHASITE__/koha_$name/g" |
689
        mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" "$mysqldb"
689
        mysql --host="$mysqlhost" --user="$mysqluser" --password="$mysqlpwd" "$mysqldb"
690
690
(-)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