50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
assert node.has_bundle('php')
|
|
assert node.has_bundle('mailserver')
|
|
|
|
directories = {
|
|
'/opt/roundcube': {
|
|
'owner': 'www-data',
|
|
},
|
|
'/opt/roundcube/logs': {
|
|
'owner': 'www-data',
|
|
'needs': [
|
|
'git_deploy:/opt/roundcube',
|
|
],
|
|
},
|
|
'/opt/roundcube/temp': {
|
|
'owner': 'www-data',
|
|
'needs': [
|
|
'git_deploy:/opt/roundcube',
|
|
],
|
|
}
|
|
}
|
|
|
|
git_deploy['/opt/roundcube'] = {
|
|
'repo': "git://github.com/roundcube/roundcubemail.git",
|
|
'rev': node.metadata.get('roundcube/version'),
|
|
'needs': [
|
|
'directory:/opt/roundcube',
|
|
],
|
|
'triggers': [
|
|
'action:composer_install',
|
|
],
|
|
}
|
|
|
|
files['/opt/roundcube/config/config.inc.php'] = {
|
|
'content_type': 'mako',
|
|
'context': {
|
|
'installer': node.metadata.get('roundcube/installer'),
|
|
'product_name': node.metadata.get('roundcube/product_name'),
|
|
'des_key': node.metadata.get('roundcube/des_key'),
|
|
'database': node.metadata.get('roundcube/database'),
|
|
'plugins': node.metadata.get('roundcube/plugins'),
|
|
},
|
|
'needs': [
|
|
'git_deploy:/opt/roundcube',
|
|
],
|
|
}
|
|
|
|
actions['composer_install'] = {
|
|
'command': "cp /opt/roundcube/composer.json-dist /opt/roundcube/composer.json && su www-data -s /bin/bash -c '/usr/bin/composer -d /opt/roundcube install'",
|
|
'triggered': True,
|
|
}
|