Compare commits

...

2 commits

2 changed files with 8 additions and 8 deletions

View file

@ -1,5 +1,5 @@
# AMBIENTE LOCAL PARA DESARROLLADORES (MRDEVS TOOLS) # AMBIENTE LOCAL PARA DESARROLLADORES (MRDEVS TOOLS)
## GUÍA PARA DESARROLLADORES - REV. 08/12/2024 ## GUÍA PARA DESARROLLADORES - REV. 17/12/2024
### PREPARACIÓN DE AMBIENTE LOCAL PARA DESARROLLADORES ### PREPARACIÓN DE AMBIENTE LOCAL PARA DESARROLLADORES
@ -84,4 +84,4 @@ Donde **<backup zipzile>** debe ser la ruta al archivo de copia de seguridad del
#### Obtebiendo secure desde repositorio central #### Obtebiendo secure desde repositorio central
(pendiente) (pendiente)

View file

@ -158,10 +158,10 @@ function developer_backup() {
return $rc return $rc
fi fi
# Copy full .gnugp for backup # Copy full .gnupg for backup
mkdir ${TMP_PATH}/.gnugp mkdir ${TMP_PATH}/.gnupg
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
cp -rf $GNUGP_PATH/* ${TMP_PATH}/.gnugp/ cp -rf $GNUGP_PATH/* ${TMP_PATH}/.gnupg/
rc=$? rc=$?
if [ $rc -ne 0 ] if [ $rc -ne 0 ]
then then
@ -198,7 +198,7 @@ function developer_backup() {
# Comprimir el archivo de respaldo en un archivo ZIP protegido con contraseña # Comprimir el archivo de respaldo en un archivo ZIP protegido con contraseña
BACKUP_FILE="${LOCAL_BACKUP}/gpg_${USER}_${TIMESTAMP}" BACKUP_FILE="${LOCAL_BACKUP}/gpg_${USER}_${TIMESTAMP}"
zip -qqr -P "${ZPASSWORD}" $BACKUP_FILE * .gnugp .ssh .gitconfig zip -qqr -P "${ZPASSWORD}" $BACKUP_FILE * .gnupg .ssh .gitconfig
rc=$? rc=$?
if [ $rc -ne 0 ] if [ $rc -ne 0 ]
then then
@ -245,8 +245,8 @@ function developer_restore() {
clear clear
# Restore zip full .gnugp path # Restore zip full .gnupg path
unzip -qqo -P "$ZPASSWORD" "$BACKUP_ZIP" ".gnugp"/* -d $HOME unzip -qqo -P "$ZPASSWORD" "$BACKUP_ZIP" ".gnupg"/* -d $HOME
rc=$? rc=$?
if [ $rc -ne 0 ]; then if [ $rc -ne 0 ]; then
return $rc return $rc