diff options
Diffstat (limited to 'installer/opengnsys_update3.sh')
-rwxr-xr-x | installer/opengnsys_update3.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/installer/opengnsys_update3.sh b/installer/opengnsys_update3.sh index 265853ae..0559a5ed 100755 --- a/installer/opengnsys_update3.sh +++ b/installer/opengnsys_update3.sh @@ -709,16 +709,16 @@ function updateWeb3() GRANT ALL PRIVILEGES ON ${OPENGNSYS_DATABASE}3.* TO $OPENGNSYS_DBUSER IDENTIFIED BY '$OPENGNSYS_DBPASSWORD'; " # Crear la base de datos - php app/console doctrine:database:create --if-not-exists + php bin/console doctrine:database:create --if-not-exists # Actualizar el esquema de la base de datos - php app/console doctrine:schema:update --force - php app/console doctrine:fixtures:load + php bin/console doctrine:schema:update --force + php bin/console doctrine:fixtures:load # Crear el usuario con permisos de Administrador - php app/console fos:user:create admin admin@localhost.localdomain admin + php bin/console fos:user:create admin admin@localhost.localdomain admin # Crear el cliente Auth2 para obtener us client_id y secret - php app/console opengnsys:oauth-server:client:create --grant-type="password" --grant-type="refresh_token" --grant-type="token" --grant-type="http://opengnsys.es/grants/og_client" + php bin/console opengnsys:oauth-server:client:create --grant-type="password" --grant-type="refresh_token" --grant-type="token" --grant-type="http://opengnsys.es/grants/og_client" # Realizar la migraciĆ³n de la versiĆ³n anterior de opengnsys 1.1 - php app/console opengnsys:migration:execute + php bin/console opengnsys:migration:execute popd # Instalar NodeJs y NG. |