This commit is contained in:
mwiegand 2021-06-20 22:46:27 +02:00
parent b4ea5849f5
commit 5965279764
4 changed files with 53 additions and 86 deletions

View file

@ -1,23 +0,0 @@
<?php
$CONFIG = array (
'instanceid' => '${instance_id}',
% if not setup:
'passwordsalt' => 'jySy/iELFRob7rRpecEXAI2Rn1gbNI',
'secret' => 'wj3r+B2/NS8X/ETWCTnwwrNy+dyy2OSWRCVQxDE8+UZBJrRd',
'trusted_domains' =>
array (
0 => 'localhost',
),
'datadirectory' => '/var/lib/nextcloud',
'dbtype' => 'pgsql',
'version' => '${version}',
'overwrite.cli.url' => 'http://localhost',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '${db_password}',
'installed' => true,
% endif
);

View file

@ -0,0 +1,11 @@
<?php
# https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-config-php-file
$CONFIG = array (
'dbuser' => 'nextcloud',
'dbpassword' => '${db_password}',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbtype' => 'pgsql',
'datadirectory' => '/var/lib/nextcloud',
'dbport' => '5432',
);

View file

@ -9,24 +9,13 @@ def occ(command, *args, **kwargs):
version = node.metadata.get('nextcloud/version') version = node.metadata.get('nextcloud/version')
# FILES AND FOLDERS # DOWNLOAD
downloads[f'/tmp/nextcloud-{version}.tar.bz2'] = { downloads[f'/tmp/nextcloud-{version}.tar.bz2'] = {
'url': f'https://download.nextcloud.com/server/releases/nextcloud-{version}.tar.bz2', 'url': f'https://download.nextcloud.com/server/releases/nextcloud-{version}.tar.bz2',
'sha256': node.metadata.get('nextcloud/sha256'), 'sha256': node.metadata.get('nextcloud/sha256'),
'triggered': True, 'triggered': True,
} }
directories['/opt/nextcloud'] = {}
directories['/opt/nextcloud/config'] = {
'owner': 'www-data',
'group': 'www-data',
}
directories['/opt/nextcloud/apps'] = {
'owner': 'www-data',
'group': 'www-data',
}
actions['extract_nextcloud'] = { actions['extract_nextcloud'] = {
'command': f'tar xfvj /tmp/nextcloud-{version}.tar.bz2 --strip 1 -C /opt/nextcloud nextcloud', 'command': f'tar xfvj /tmp/nextcloud-{version}.tar.bz2 --strip 1 -C /opt/nextcloud nextcloud',
'unless': f"""php -r 'include "/opt/nextcloud/version.php"; echo "$OC_VersionString";' | grep -q '^{version}$'""", 'unless': f"""php -r 'include "/opt/nextcloud/version.php"; echo "$OC_VersionString";' | grep -q '^{version}$'""",
@ -38,6 +27,22 @@ actions['extract_nextcloud'] = {
], ],
} }
# DIRECTORIES
directories['/opt/nextcloud'] = {}
directories['/opt/nextcloud/config'] = {
'owner': 'www-data',
'group': 'www-data',
}
directories['/opt/nextcloud/apps'] = {
'owner': 'www-data',
'group': 'www-data',
}
directories['/var/lib/nextcloud'] = {
'owner': 'www-data',
'group': 'www-data',
'mode': '0770',
}
actions['chown_/opt/nextcloud/apps'] = { actions['chown_/opt/nextcloud/apps'] = {
'command': 'chown -R www-data:www-data /opt/nextcloud/apps', 'command': 'chown -R www-data:www-data /opt/nextcloud/apps',
'unless': '! stat -c "%U:%G" /opt/nextcloud/apps/* | grep -vq www-data:www-data', 'unless': '! stat -c "%U:%G" /opt/nextcloud/apps/* | grep -vq www-data:www-data',
@ -45,35 +50,30 @@ actions['chown_/opt/nextcloud/apps'] = {
'action:extract_nextcloud', 'action:extract_nextcloud',
], ],
} }
actions['chown_/opt/nextcloud/config'] = {
'command': 'chown -R www-data:www-data /opt/nextcloud/config', # SETUP
'unless': '! stat -c "%U:%G" /opt/nextcloud/config/* | grep -vq www-data:www-data',
files['/opt/nextcloud/config/config.php'] = {
'content_type': 'any',
'owner': 'www-data',
'group': 'www-data',
'mode': '640',
'needs': [ 'needs': [
'action:extract_nextcloud', 'action:extract_nextcloud',
], ],
} }
files['/opt/nextcloud/config/managed.config.php'] = {
directories[node.metadata.get('nextcloud/data_dir')] = { 'content_type': 'mako',
'owner': 'www-data', 'owner': 'www-data',
'group': 'www-data', 'group': 'www-data',
'mode': '0770', 'mode': '640',
'context': {
'db_password': node.metadata.get('postgresql/roles/nextcloud/password'),
},
'needs': [
'action:extract_nextcloud',
],
} }
# SETUP
with open(join(repo.path, 'bundles', 'nextcloud', 'files', 'config.php')) as file:
content = Template(file.read()).render(
setup=True,
instance_id=node.metadata.get('nextcloud/instance_id'),
)
actions['nextcloud_config_for_install'] = {
'command': f'echo {quote(content)} > /opt/nextcloud/config/config.php && chown www-data:www-data /opt/nextcloud/config/config.php',
'needs': [
'action:extract_nextcloud',
],
'triggered': True,
}
actions['install_nextcloud'] = { actions['install_nextcloud'] = {
'command': occ( 'command': occ(
'maintenance:install', 'maintenance:install',
@ -85,39 +85,19 @@ actions['install_nextcloud'] = {
database_pass=node.metadata.get('postgresql/roles/nextcloud/password'), database_pass=node.metadata.get('postgresql/roles/nextcloud/password'),
admin_user='admin', admin_user='admin',
admin_pass=node.metadata.get('nextcloud/admin_pass'), admin_pass=node.metadata.get('nextcloud/admin_pass'),
data_dir=node.metadata.get('nextcloud/data_dir'), data_dir='/var/lib/nextcloud',
), ),
'unless': """ 'unless': occ('status') + ' | grep -q "installed: true"',
psql -At -d nextcloud -c "SELECT 'OK' FROM information_schema.tables WHERE table_name='oc_users' AND table_schema='public'" | grep -q "^OK$"
""",
'needs': [ 'needs': [
'postgres_db:nextcloud', 'postgres_db:nextcloud',
f"directory:{node.metadata.get('nextcloud/data_dir')}", f"directory:/var/lib/nextcloud",
'directory:/opt/nextcloud', 'directory:/opt/nextcloud',
'directory:/opt/nextcloud/config', 'directory:/opt/nextcloud/config',
'directory:/opt/nextcloud/apps', 'directory:/opt/nextcloud/apps',
'action:chown_/opt/nextcloud/config',
'action:chown_/opt/nextcloud/apps', 'action:chown_/opt/nextcloud/apps',
'action:extract_nextcloud', 'action:extract_nextcloud',
], 'file:/opt/nextcloud/config/config.php',
'preceded_by': [ 'file:/opt/nextcloud/config/managed.config.php',
'action:nextcloud_config_for_install',
],
}
files['/opt/nextcloud/config/config.php'] = {
'content_type': 'mako',
'context': {
'setup': False,
'version': version,
'instance_id': node.metadata.get('nextcloud/instance_id'),
'db_password': node.metadata.get('postgresql/roles/nextcloud/password'),
},
'owner': 'www-data',
'group': 'www-data',
'mode': '0770',
'needs': [
'action:install_nextcloud',
], ],
} }
@ -125,9 +105,9 @@ files['/opt/nextcloud/config/config.php'] = {
actions['upgrade_nextcloud'] = { actions['upgrade_nextcloud'] = {
'command': occ('upgrade'), 'command': occ('upgrade'),
'triggered': True, 'unless': occ('status') + f' | grep -q "versionstring: {version}"',
'triggered_by': [ 'needs': [
f'action:extract_nextcloud', 'action:install_nextcloud',
], ],
} }

View file

@ -31,7 +31,6 @@ defaults = {
}, },
}, },
'nextcloud': { 'nextcloud': {
'data_dir': '/var/lib/nextcloud',
'admin_user': 'admin', 'admin_user': 'admin',
'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'), 'admin_pass': repo.vault.password_for(f'{node.name} nextcloud admin pw'),
}, },