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

(-)a/debian/scripts/koha-create (-12 lines)
Lines 668-684 FLUSH PRIVILEGES; Link Here
668
eof
668
eof
669
    fi #`
669
    fi #`
670
670
671
    if [ "$op" = use ]
672
    then
673
        mysql --defaults-extra-file=/etc/mysql/koha-common.cnf --force <<eof
674
CREATE USER \`$mysqluser\`@'$mysql_hostname' IDENTIFIED BY '$mysqlpwd';
675
CREATE USER \`$mysqluser\`@'%' IDENTIFIED BY '$mysqlpwd';
676
GRANT ALL PRIVILEGES ON \`$mysqldb\`.* TO \`$mysqluser\`;
677
GRANT ALL PRIVILEGES ON \`$mysqldb\`.* TO \`$mysqluser\`@'$mysql_hostname';
678
FLUSH PRIVILEGES;
679
eof
680
    fi #`
681
682
    if [ "$CLO_LETSENCRYPT" = "yes" ]; then
671
    if [ "$CLO_LETSENCRYPT" = "yes" ]; then
683
        APACHE_CONFIGFILE="apache-site-https.conf.in"
672
        APACHE_CONFIGFILE="apache-site-https.conf.in"
684
    else
673
    else
685
- 

Return to bug 14533