Skip to content

Commit

Permalink
added process configuration (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
wachterjohannes authored Jul 2, 2017
1 parent f8ae152 commit ee626d0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/DependencyInjection/NanbandoSuluExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public function prepend(ContainerBuilder $container)
'backup' => [
'database' => [
'plugin' => 'mysql',
'process' => ['database'],
'parameter' => [
'username' => '%database_user%',
'password' => '%database_password%',
Expand All @@ -83,6 +84,7 @@ public function prepend(ContainerBuilder $container)
'backup' => [
'uploads' => [
'plugin' => 'directory',
'process' => ['files'],
'parameter' => [
'directory' => 'var/uploads',
],
Expand All @@ -98,6 +100,7 @@ public function prepend(ContainerBuilder $container)
'backup' => [
'uploads' => [
'plugin' => 'directory',
'process' => ['files'],
'parameter' => [
'directory' => 'uploads',
],
Expand All @@ -113,6 +116,7 @@ public function prepend(ContainerBuilder $container)
'backup' => [
'cmf' => [
'plugin' => 'jackrabbit',
'process' => ['database'],
'parameter' => [
'jackrabbit_uri' => '%jackrabbit_uri%',
'workspace' => '%phpcr_workspace%',
Expand All @@ -138,6 +142,7 @@ public function prepend(ContainerBuilder $container)
'backup' => [
'cmf_live' => [
'plugin' => 'jackrabbit',
'process' => ['database'],
'parameter' => [
'jackrabbit_uri' => '%jackrabbit_uri%',
'workspace' => '%phpcr_workspace%_live',
Expand Down

0 comments on commit ee626d0

Please sign in to comment.