remove db_conf_path configuration

Cette révision appartient à :
Daniel Seifert 2024-11-01 09:59:25 +01:00
Parent bbc379b70b
révision d98a79efce
2 fichiers modifiés avec 6 ajouts et 0 suppressions

Voir le fichier

@ -2,6 +2,10 @@
namespace Deployer;
set('db_conf_path', function () {
return '{{deploy_path}}/database/.my.cnf';
});
set('database_configured', function() {
return has('db_name') && strlen(get('db_name')) &&
has('db_conf_path') && strlen(get('db_conf_path')) && test("[ -f {{db_conf_path}} ]");

Voir le fichier

@ -2,6 +2,8 @@
namespace Deployer;
require_once 'inc/database.php';
desc('create database coniguration file');
task('setup:createDbConfig', function () {
try {