diff options
author | adv <adv@uma.es> | 2011-05-10 23:07:39 +0000 |
---|---|---|
committer | adv <adv@uma.es> | 2011-05-10 23:07:39 +0000 |
commit | f31dbf1a73d9076e0d72b4707016b4b38ea907dd (patch) | |
tree | a7467e9d0f73936bd73c87864aa97f559ce05168 /admin/Interface | |
parent | 2d40ba26b087b8c3faf818beb6abbe34db391721 (diff) |
version 1.0.1 #381 el control de escritura en repositorio lo realiza scripts createImage
git-svn-id: https://opengnsys.es/svn/branches/version1.0@1958 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Interface')
-rwxr-xr-x | admin/Interface/CambiarAcceso | 34 |
1 files changed, 1 insertions, 33 deletions
diff --git a/admin/Interface/CambiarAcceso b/admin/Interface/CambiarAcceso index 38cc5ab1..5fda698e 100755 --- a/admin/Interface/CambiarAcceso +++ b/admin/Interface/CambiarAcceso @@ -5,12 +5,6 @@ # PARAMETROS RECIBIDOS DESDE EL CLIENTE # $1 modo (admin, user) #_______________________________________________________________________________________________________________________________ -### codigos de error -#$OG_ERR_NOTEXEC = 7 La llamada no se ha realizado desde OGclient. -#$OG_ERR_NOTFOUND = 2 Repositorio no montado. -#$OG_ERR_LOCKED = 4 Repositorio bloqueado. -#$OG_ERR_NOTWRITE = 14 No Se ha realizado el montaje RW correctamente. - # Error si llamada no se realliza desde OpenGnSys Client. PROG=$(basename $0) @@ -51,30 +45,4 @@ ogEcho info "$PROG: Montar repositorio $REPO por $PROTO en modo $1" case "$PROTO" in nfs) mount -t nfs $REPOIP:$OGIMG $OGIMG -o $MODE ;; smb) mount -t cifs //$REPOIP/ogimages $OGIMG -o $MODE,serverino,acl,username=opengnsys,password=og ;; -esac - -#Comprobamos que el tipo de acceso (escritura/lectura) se ha realizado correctamente. -FILETEST="${OGIMG}/testWrite.txt" -touch $FILETEST -VALUE=$? - -case "$1" in - admin) - if [ "$VALUE" == 0 ] - then - rm $FILETEST - else - ogRaiseError $OG_ERR_NOTWRITE "sin acceso de escritura en modo admin" - exit $? - fi - ;; - user) - if [ "$VALUE" == 0 ] - then - rm $FILETEST - ogRaiseError $OG_ERR_NOTWRITE "Warning: con acceso de escritura en modo user" - exit $? - fi - ;; -esac - +esac
\ No newline at end of file |