diff options
author | irina <irinagomez@us.es> | 2015-10-19 11:51:12 +0000 |
---|---|---|
committer | irina <irinagomez@us.es> | 2015-10-19 11:51:12 +0000 |
commit | 5359439fda9c1e3e3acb15436df6a388111cc4c5 (patch) | |
tree | 9e1ae7b20743458495a47c40dbd7ad138bef3894 /client | |
parent | e49911e992642458484b9d9e585e7586118821f9 (diff) |
bootOs: se corrige errata en el control de parĂ¡metros
git-svn-id: https://opengnsys.es/svn/branches/version1.1@4701 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client')
-rwxr-xr-x | client/shared/scripts/bootOs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/shared/scripts/bootOs b/client/shared/scripts/bootOs index 275bbc0d..d0bda8b9 100755 --- a/client/shared/scripts/bootOs +++ b/client/shared/scripts/bootOs @@ -3,7 +3,7 @@ # (puede usarse como base para el programa de arranque usado por OpenGNSys Admin). PROG="$(basename $0)" -if [ $# -lt 2 -o $# gt 3 ]; then +if [ $# -lt 2 -o $# -gt 3 ]; then ogRaiseError $OG_ERR_FORMAT "Formato: $PROG ndisco nfilesys [kernelparams]" exit $? fi |