Commit e8a1837d authored by jkaberg's avatar jkaberg

properly set correct timezone

parent 7ba79eff
......@@ -22,11 +22,12 @@ if [ ! -d /usr/local/lib/owncloud ]; then
fi
# Create a configuration file.
TIMEZONE=`cat /etc/timezone`
if [ ! -f "/usr/local/lib/owncloud/config/config.php" ]; then
cat - > /usr/local/lib/owncloud/config/config.php <<EOF;
<?php
$CONFIG = array (
\$CONFIG = array (
'datadirectory' => '$STORAGE_ROOT/owncloud',
array (
0 =>
......@@ -43,7 +44,7 @@ $CONFIG = array (
),
'mail_smtpmode' => 'smtp',
'mail_smtpsecure' => 'ssl',
'mail_from_address' => 'no-reply@$PRIMARY_HOSTNAME',
'mail_from_address' => 'no-reply',
'mail_domain' => '$PRIMARY_HOSTNAME',
'mail_smtpauthtype' => 'LOGIN',
'mail_smtpauth' => true,
......@@ -51,6 +52,7 @@ $CONFIG = array (
'mail_smtpport' => '587',
'mail_smtpname' => 'no-reply@$PRIMARY_HOSTNAME',
'mail_smtppassword' => '$SECRET_PASSWORD',
'logtimezone' => '$TIMEZONE',
);
?>
EOF
......
......@@ -31,7 +31,8 @@ if [ ! -d /usr/local/lib/z-push ]; then
fi
# Configure default config
# TODO: Add timezone etc?
TIMEZONE=`cat /etc/timezone`
sed -i "s/define('TIMEZONE', .*/define('TIMEZONE', '$TIMEZONE');/" /usr/local/lib/z-push/config.php
sed -i "s/define('BACKEND_PROVIDER', .*/define('BACKEND_PROVIDER', 'BackendCombined');/" /usr/local/lib/z-push/config.php
# Configure BACKEND
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment