diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2020-01-31 11:42:10 +0100 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2020-01-31 11:42:10 +0100 |
commit | 35f1277f660e56dacb085b2c255b5e4aae7b0c97 (patch) | |
tree | 558684b7a2639f889d7f785c33726a5b5e06621d | |
parent | c0104f18aa811218070b7951001899d8233a2f15 (diff) |
#946: Fix appropriate parameter (modify commit `8f24716`).
-rwxr-xr-x | installer/opengnsys_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/opengnsys_update.sh b/installer/opengnsys_update.sh index 0b2fe4cd..c4fb6491 100755 --- a/installer/opengnsys_update.sh +++ b/installer/opengnsys_update.sh @@ -1086,7 +1086,7 @@ function compileServices() popd # Generar un API token de ogAdmServer si no existe en el fichero de configuración. grep -q "APITOKEN=" $INSTALL_TARGET/etc/ogAdmServer.cfg || \ - $INSTALL_TARGET/bin/settoken server <<<"y" + $INSTALL_TARGET/bin/settoken -f return $hayErrores } |