wip
This commit is contained in:
parent
c63e56975c
commit
12c5b86cc5
3 changed files with 40 additions and 36 deletions
|
@ -41,15 +41,19 @@ actions = {
|
|||
},
|
||||
}
|
||||
|
||||
# files = {
|
||||
# '/opt/freescout/.env': {
|
||||
# 'content': '\n'.join(
|
||||
# f'{k}={v}' for k, v in
|
||||
# sorted(node.metadata.get('freescout/env').items())
|
||||
# ),
|
||||
# 'needs': [
|
||||
# 'directory:/opt/freescout',
|
||||
# 'action:clone_freescout',
|
||||
# ],
|
||||
# },
|
||||
# }
|
||||
files = {
|
||||
'/opt/freescout/.env': {
|
||||
# https://github.com/freescout-helpdesk/freescout/blob/dist/.env.example
|
||||
# Every time you are making changes in .env file, in order changes to take an effect you need to run:
|
||||
# ´sudo su - www-data -c 'php /opt/freescout/artisan freescout:clear-cache' -s /bin/bash´
|
||||
'owner': 'www-data',
|
||||
'content': '\n'.join(
|
||||
f'{k}={v}' for k, v in
|
||||
sorted(node.metadata.get('freescout/env').items())
|
||||
) + '\n',
|
||||
'needs': [
|
||||
'directory:/opt/freescout',
|
||||
'action:clone_freescout',
|
||||
],
|
||||
},
|
||||
}
|
||||
|
|
|
@ -16,18 +16,18 @@ defaults = {
|
|||
'php-intl': {},
|
||||
},
|
||||
},
|
||||
# 'freescout': {
|
||||
# 'env': {
|
||||
# 'APP_TIMEZONE': 'Europe/Berlin',
|
||||
# 'DB_CONNECTION': 'pgsql',
|
||||
# 'DB_HOST': '127.0.0.1',
|
||||
# 'DB_PORT': '5432',
|
||||
# 'DB_DATABASE': 'freescout',
|
||||
# 'DB_USERNAME': 'freescout',
|
||||
# 'DB_PASSWORD': database_password,
|
||||
# 'APP_KEY': 'base64:' + repo.vault.random_bytes_as_base64_for(f'{node.name} freescout APP_KEY', length=32).value
|
||||
# },
|
||||
# },
|
||||
'freescout': {
|
||||
'env': {
|
||||
'APP_TIMEZONE': 'Europe/Berlin',
|
||||
'DB_CONNECTION': 'pgsql',
|
||||
'DB_HOST': '127.0.0.1',
|
||||
'DB_PORT': '5432',
|
||||
'DB_DATABASE': 'freescout',
|
||||
'DB_USERNAME': 'freescout',
|
||||
'DB_PASSWORD': database_password,
|
||||
'APP_KEY': 'base64:' + repo.vault.random_bytes_as_base64_for(f'{node.name} freescout APP_KEY', length=32).value
|
||||
},
|
||||
},
|
||||
'php': {
|
||||
'php.ini': {
|
||||
'cgi': {
|
||||
|
@ -57,17 +57,17 @@ defaults = {
|
|||
}
|
||||
|
||||
|
||||
# @metadata_reactor.provides(
|
||||
# 'freescout/env/APP_URL',
|
||||
# )
|
||||
# def freescout(metadata):
|
||||
# return {
|
||||
# 'freescout': {
|
||||
# 'env': {
|
||||
# 'APP_URL': 'https://' + metadata.get('freescout/domain') + '/',
|
||||
# },
|
||||
# },
|
||||
# }
|
||||
@metadata_reactor.provides(
|
||||
'freescout/env/APP_URL',
|
||||
)
|
||||
def freescout(metadata):
|
||||
return {
|
||||
'freescout': {
|
||||
'env': {
|
||||
'APP_URL': 'https://' + metadata.get('freescout/domain') + '/',
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@metadata_reactor.provides(
|
||||
|
|
|
@ -91,4 +91,4 @@ def require_bundle(node, bundle, hint=''):
|
|||
from shlex import quote
|
||||
|
||||
def run_as(user, command):
|
||||
return f'sudo su - {user} -c {quote(command)} -s /bin/bash'
|
||||
return f'sudo su - {user} -s /bin/bash -c {quote(command)}'
|
||||
|
|
Loading…
Reference in a new issue