From ef2b190964d04182dbb675ba5577351c384fe804 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Sun, 20 Jun 2021 15:58:13 +0200 Subject: [PATCH] wip --- bundles/nextcloud/files/config.php | 60 ++++-------------------------- bundles/nextcloud/items.py | 23 +++++++++++- 2 files changed, 29 insertions(+), 54 deletions(-) diff --git a/bundles/nextcloud/files/config.php b/bundles/nextcloud/files/config.php index 4018a55..6ac32fa 100644 --- a/bundles/nextcloud/files/config.php +++ b/bundles/nextcloud/files/config.php @@ -1,65 +1,21 @@ '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', - ), ); diff --git a/bundles/nextcloud/items.py b/bundles/nextcloud/items.py index 6b9f32a..0ed2e8c 100644 --- a/bundles/nextcloud/items.py +++ b/bundles/nextcloud/items.py @@ -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', ], }