Adds general.yml parameter "ssh_needs_tty" which appends "-t" to the ssh

command
Adds deployment parameter "rsync: { copy: yes }" which copies the prior
release then rsync's (to increase speed)
This commit is contained in:
mikec
2014-01-28 21:43:43 -05:00
parent 5cc9c02c3e
commit e7d8d5ce68
3 changed files with 36 additions and 14 deletions
+6 -3
View File
@@ -73,13 +73,15 @@ class InitCommand extends AbstractCommand
'%notificationEnabled%',
'%loggingEnabled%',
'%maxlogs%',
'%ssh_needs_tty%',
),
array(
$projectName,
$notificationEmail,
$notificationEnabled,
'true',
30
30,
'false'
),
$this->getGeneralConfigTemplate()
);
@@ -98,8 +100,9 @@ class InitCommand extends AbstractCommand
. 'email: %notificationEmail%' . PHP_EOL
. 'notifications: %notificationEnabled%' . PHP_EOL
. 'logging: %loggingEnabled%' . PHP_EOL
. 'maxlogs: %maxlogs%' . PHP_EOL;
. 'maxlogs: %maxlogs%' . PHP_EOL
. 'ssh_needs_tty: %ssh_needs_tty%' . PHP_EOL;
return $template;
}
}
}