This commit is contained in:
mwiegand 2021-06-20 15:58:13 +02:00
parent 6bbaf624f2
commit ef2b190964
2 changed files with 29 additions and 54 deletions

View file

@ -1,65 +1,21 @@
<?php
$CONFIG = array (
'instanceid' => 'ocfnc48njsxw',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'passwordsalt' => 'jySy/iELFRob7rRpecEXAI2Rn1gbNI',
'secret' => 'wj3r+B2/NS8X/ETWCTnwwrNy+dyy2OSWRCVQxDE8+UZBJrRd',
'trusted_domains' =>
array (
0 => 'cloud.sublimity.de',
),
'trusted_proxies' =>
array (
0 => 'cloud.sublimity.de',
0 => 'localhost',
),
'datadirectory' => '/var/lib/nextcloud',
'overwrite.cli.url' => 'https://cloud.sublimity.de',
'overwriteprotocol' => 'https',
'dbtype' => 'mysql',
'version' => '21.0.1.1',
'dbtype' => 'pgsql',
'version' => '21.0.2.1',
'overwrite.cli.url' => 'http://localhost',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => 'xxx',
'dbpassword' => 'JQImkLIeaa38whvJ1lBj3UeMqNt0SH33',
'instanceid' => 'oc3wqc1kg39w',
'installed' => true,
'updater.release.channel' => 'stable',
'maintenance' => false,
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'theme' => '',
'default_phone_region' => 'DE',
'loglevel' => 0,
'preview_max_x' => 1280,
'preview_max_y' => 1280,
'preview_max_scale_factor' => 1,
'user_backends' =>
array (
0 =>
array (
'class' => 'OC_User_IMAP',
'arguments' =>
array (
0 => '{mail.sublimity.de:143}',
),
),
),
'mail_smtpmode' => 'smtp',
'mail_smtpauthtype' => 'PLAIN',
'mail_smtpsecure' => 'tls',
'mail_from_address' => 'cloud',
'mail_domain' => 'sublimity.de',
'mail_smtphost' => 'mail.sublimity.de',
'mail_smtpport' => '587',
'mail_smtpauth' => 1,
'mail_smtpname' => 'xxx',
'mail_smtppassword' => 'xxx',
'mysql.utf8mb4' => true,
'app_install_overwrite' =>
array (
0 => 'spreed',
1 => 'camerarawpreviews',
2 => 'calendar',
3 => 'previewgenerator',
),
);

View file

@ -49,12 +49,28 @@ actions['chown_/opt/nextcloud/config'] = {
],
}
files['/opt/nextcloud/config/config.php'] = {
'owner': 'www-data',
'group': 'www-data',
'mode': '0770',
'needs': [
'action:extract_nextcloud',
],
}
directories[node.metadata.get('nextcloud/data_dir')] = {
'owner': 'www-data',
'group': 'www-data',
'mode': '0770',
}
actions['set_nextcloud_uninstalled'] = {
'command': """sed -i "/installed/d" /opt/nextcloud/config/config.php""",
'triggered': True,
'needs': [
'file:/opt/nextcloud/config/config.php',
],
}
actions['install_nextcloud'] = {
'command': occ(
'maintenance:install',
@ -68,18 +84,21 @@ actions['install_nextcloud'] = {
admin_pass=node.metadata.get('nextcloud/admin_pass'),
data_dir=node.metadata.get('nextcloud/data_dir'),
),
'unless': occ('status') + ' | grep -q "installed: true"',
'unless': """
psql -At -d nextcloud -c "SELECT 'OK' FROM information_schema.tables WHERE table_name='oc_users' AND table_schema='public'" | grep -q "^OK$"
""",
'needs': [
f"directory:{node.metadata.get('nextcloud/data_dir')}",
'directory:/opt/nextcloud',
'directory:/opt/nextcloud/config',
'directory:/opt/nextcloud/apps',
'file:/opt/nextcloud/config/config.php',
'action:chown_/opt/nextcloud/config',
'action:chown_/opt/nextcloud/apps',
'action:extract_nextcloud',
],
'preceded_by': [
f'download:/tmp/nextcloud-{version}.tar.bz2',
f'action:set_nextcloud_uninstalled',
],
}