This commit is contained in:
mwiegand 2021-06-30 22:55:44 +02:00
parent ba347416ea
commit d2f6d28137
5 changed files with 105 additions and 102 deletions

3
.envrc
View file

@ -2,4 +2,7 @@
python3 -m venv .venv python3 -m venv .venv
source ./.venv/bin/activate source ./.venv/bin/activate
export BW_GIT_DEPLOY_CACHE="$(realpath ~)/.cache/bw/git_deploy"
mkdir -p "$BW_GIT_DEPLOY_CACHE"
unset PS1 unset PS1

View file

@ -4,97 +4,86 @@ from shlex import quote
from os.path import join from os.path import join
from mako.template import Template from mako.template import Template
def occ(command, *args, **kwargs): print(f"v{node.metadata.get('nextcloud/version')}")
return f"""sudo -u www-data php /opt/nextcloud/occ {command} {' '.join(args)} {' '.join(f'--{name.replace("_", "-")}' + (f'={value}' if value else '') for name, value in kwargs.items())}"""
version = node.metadata.get('nextcloud/version')
# DOWNLOAD directories = {
'/opt/nextcloud': {},
downloads[f'/tmp/nextcloud-{version}.tar.bz2'] = { '/etc/nextcloud': {
'url': f'https://download.nextcloud.com/server/releases/nextcloud-{version}.tar.bz2', 'owner': 'www-data',
'sha256': node.metadata.get('nextcloud/sha256'), },
'triggered': True, '/var/lib/nextcloud': {
} 'owner': 'www-data',
actions['delete_nextcloud'] = { 'mode': '770',
'command': 'rm -rf /opt/nextcloud/*', },
'triggered': True, '/var/lib/nextcloud/.apps': {
} 'owner': 'www-data',
actions['extract_nextcloud'] = { },
'command': f'tar xfvj /tmp/nextcloud-{version}.tar.bz2 --skip-old-files --strip 1 -C /opt/nextcloud nextcloud', '/var/lib/nextcloud/.cache': {
'unless': f"""php -r 'include "/opt/nextcloud/version.php"; echo "$OC_VersionString";' | grep -q '^{version}$'""", 'owner': 'www-data',
'preceded_by': [
'action:delete_nextcloud',
f'download:/tmp/nextcloud-{version}.tar.bz2',
],
'needs': [
'action:symlink_/opt/nextcloud/config',
'directory:/opt/nextcloud',
],
}
# DIRECTORIES, FILES AND SYMLINKS
directories['/etc/nextcloud'] = {
'owner': 'www-data',
'group': 'www-data',
}
directories['/opt/nextcloud'] = {}
directories['/var/lib/nextcloud'] = {
'owner': 'www-data',
'group': 'www-data',
'mode': '770',
}
directories['/var/lib/nextcloud/.apps'] = {
'owner': 'www-data',
'group': 'www-data',
}
directories['/var/lib/nextcloud/.cache'] = {
'owner': 'www-data',
'group': 'www-data',
}
files['/etc/nextcloud/CAN_INSTALL'] = {
'content': '',
'owner': 'www-data',
'group': 'www-data',
'mode': '640',
'needs': [
'directory:/etc/nextcloud',
],
}
files['/etc/nextcloud/managed.config.php'] = {
'content_type': 'mako',
'owner': 'www-data',
'group': 'www-data',
'mode': '640',
'context': {
'db_password': node.metadata.get('postgresql/roles/nextcloud/password'),
}, },
'needs': [
'directory:/etc/nextcloud',
],
} }
actions['symlink_/opt/nextcloud/config'] = {
'command': f'ln -s /etc/nextcloud /opt/nextcloud/config && chown www-data:www-data /opt/nextcloud/config', git_deploy = {
'unless': 'readlink /opt/nextcloud/config | grep -q /etc/nextcloud', '/opt/nextcloud': {
'needs': [ 'repo': 'git://github.com/nextcloud/server.git',
'action:delete_nextcloud', 'rev': f"v{node.metadata.get('nextcloud/version')}",
'directory:/etc/nextcloud', 'needs': {
], 'directory:/opt/nextcloud',
},
},
'/opt/nextcloud/3rdparty': {
'repo': 'git://github.com/nextcloud/3rdparty.git',
'rev': f"v{node.metadata.get('nextcloud/version')}",
'needs': {
'git_deploy:/opt/nextcloud',
},
},
} }
actions['symlink_/opt/nextcloud/userapps'] = {
'command': f'ln -s /var/lib/nextcloud/.apps /opt/nextcloud/userapps && chown www-data:www-data /opt/nextcloud/userapps', symlinks = {
'unless': 'readlink /opt/nextcloud/userapps | grep -q /var/lib/nextcloud/.apps', '/opt/nextcloud/config': {
'needs': [ 'target': '/etc/nextcloud',
'action:delete_nextcloud', 'owner': 'www-data',
'directory:/var/lib/nextcloud/.apps', 'needs': [
], 'git_deploy:/opt/nextcloud',
],
},
'/opt/nextcloud/userapps': {
'target': '/var/lib/nextcloud/.apps',
'owner': 'www-data',
'needs': [
'git_deploy:/opt/nextcloud',
],
},
}
files = {
'/etc/nextcloud/CAN_INSTALL': {
'content': '',
'owner': 'www-data',
'mode': '640',
'needs': [
'directory:/etc/nextcloud',
],
},
'/etc/nextcloud/managed.config.php': {
'content_type': 'mako',
'owner': 'www-data',
'mode': '640',
'context': {
'db_password': node.metadata.get('postgresql/roles/nextcloud/password'),
},
'needs': [
'directory:/etc/nextcloud',
],
},
} }
# SETUP # SETUP
actions['install_nextcloud'] = { actions['install_nextcloud'] = {
'command': occ( 'command': repo.libs.nextcloud.occ(
'maintenance:install', 'maintenance:install',
no_interaction=None, no_interaction=None,
database='pgsql', database='pgsql',
@ -106,18 +95,19 @@ actions['install_nextcloud'] = {
admin_pass=node.metadata.get('nextcloud/admin_pass'), admin_pass=node.metadata.get('nextcloud/admin_pass'),
data_dir='/var/lib/nextcloud', data_dir='/var/lib/nextcloud',
), ),
'unless': occ('status') + ' | grep -q "installed: true"', 'unless': repo.libs.nextcloud.occ('status') + ' | grep -q "installed: true"',
'needs': [ 'needs': [
'directory:/etc/nextcloud', 'directory:/etc/nextcloud',
'directory:/opt/nextcloud', 'directory:/opt/nextcloud',
'directory:/var/lib/nextcloud', 'directory:/var/lib/nextcloud',
'directory:/var/lib/nextcloud/.apps', 'directory:/var/lib/nextcloud/.apps',
'directory:/var/lib/nextcloud/.cache', 'directory:/var/lib/nextcloud/.cache',
'symlink:/opt/nextcloud/config',
'symlink:/opt/nextcloud/userapps',
'git_deploy:/opt/nextcloud',
'git_deploy:/opt/nextcloud/3rdparty',
'file:/etc/nextcloud/CAN_INSTALL', 'file:/etc/nextcloud/CAN_INSTALL',
'file:/etc/nextcloud/managed.config.php', 'file:/etc/nextcloud/managed.config.php',
'action:extract_nextcloud',
'action:symlink_/opt/nextcloud/userapps',
'action:symlink_/opt/nextcloud/config',
'postgres_db:nextcloud', 'postgres_db:nextcloud',
], ],
} }
@ -125,21 +115,20 @@ actions['install_nextcloud'] = {
# UPGRADE # UPGRADE
actions['upgrade_nextcloud'] = { actions['upgrade_nextcloud'] = {
'command': occ('upgrade'), 'command': repo.libs.nextcloud.occ('upgrade'),
'unless': occ('status') + f' | grep -q "versionstring: {version}"', 'unless': repo.libs.nextcloud.occ('status') + f' | grep -q "versionstring: {node.metadata.get("nextcloud/version")}"',
'needs': [ 'needs': [
'action:install_nextcloud', 'action:install_nextcloud',
], ],
} }
actions['nextcloud_add_missing_inidces'] = { actions['nextcloud_add_missing_inidces'] = {
'command': occ('db:add-missing-indices'), 'command': repo.libs.nextcloud.occ('db:add-missing-indices'),
'needs': [ 'needs': [
'action:upgrade_nextcloud', 'action:upgrade_nextcloud',
], ],
'triggered': True, 'triggered': True,
'triggered_by': [ 'triggered_by': [
f'action:extract_nextcloud', f'git_deploy:/opt/nextcloud',
f'action:upgrade_nextcloud',
], ],
} }

View file

@ -39,14 +39,6 @@ defaults = {
'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'),
}, },
'nginx': {
'vhosts': {
'nextcloud': {
'webroot': '/opt/nextcloud',
'php': True,
},
},
},
'postgresql': { 'postgresql': {
'roles': { 'roles': {
'nextcloud': { 'nextcloud': {
@ -70,3 +62,19 @@ defaults = {
}, },
}, },
} }
# @metadata_reactor.provides(
# 'nginx/vhosts/nextcloud/domain',
# )
# def nginx(metadata):
# return {
# 'nginx': {
# 'vhosts': {
# 'nextcloud': {
# 'domain': metadata.get('nextcloud/domain'),
# 'webroot': '/opt/nextcloud',
# 'php': True,
# },
# },
# },
# }

2
libs/nextcloud.py Normal file
View file

@ -0,0 +1,2 @@
def occ(command, *args, **kwargs):
return f"""sudo -u www-data php /opt/nextcloud/occ {command} {' '.join(args)} {' '.join(f'--{name.replace("_", "-")}' + (f'={value}' if value else '') for name, value in kwargs.items())}"""

View file

@ -11,10 +11,15 @@
'dnsserver', 'dnsserver',
], ],
'bundles': [ 'bundles': [
'nextcloud',
'wireguard', 'wireguard',
'zfs', 'zfs',
], ],
'metadata': { 'metadata': {
'nextcloud': {
'domain': 'cloud.sublimity.de',
'version': '21.0.0',
},
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae', 'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',
'bind': { 'bind': {
'domain': 'ns.sublimity.de', 'domain': 'ns.sublimity.de',
@ -86,10 +91,6 @@
# 'woodpipe.de', # 'woodpipe.de',
], ],
}, },
'nextcloud': {
'version': '21.0.2',
'sha256': '5e5b38109a3485db5fd2d248f24478eabe6c0790ec10b030acbbee207d5511fe',
},
'roundcube': { 'roundcube': {
'product_name': 'Sublimity Mail', 'product_name': 'Sublimity Mail',
'version': '1.4.11', 'version': '1.4.11',