summaryrefslogtreecommitdiffstats
path: root/client/nfsexport/scripts/createImage
blob: 11f6eb21d4664e2be0e30baad96c44e0aba7f13a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/bin/bash
# create-image.sh - Scirpt de ejemplo para crear una imagen de un sistema de archivos.
# (puede usarse como base para el programa de creación de imágenes usado por OpenGNSys Admin).

TIME1=$SECONDS
PROG="$(basename $0)"
if [ $# -ne 4 ]; then
    ogRaiseError $OG_ERR_FORMAT "$MSG_FORMAT: $PROG ndisco nparticion REPO|CACHE imagen"
    exit $?
fi

# Si el repositorio es CACHE comprobamos que exista
if [ "$3" == "CACHE" -o "$3" == "cache" ]; then 
    if ! $(ogFindCache >/dev/null); then
        ogRaiseError $OG_ERR_NOTFOUND "CACHE"
        exit $?
    fi
fi

# Obtener información de los parámetros de entrada.
PART=$(ogDiskToDev "$1" "$2") || exit $?
IMGDIR=$(ogGetParentPath "$3" "/$4")
# Si no existe, crear subdirectorio de la imagen.
if [ $? != 0 ]; then
    echo "[5] Crear subdirectorio de la imagen \"$3 $(dirname "$4")."
    ogMakeDir "$3" $(dirname "/$4")
    IMGDIR=$(ogGetParentPath "$3" "/$4") || exit $?
fi
IMGFILE=$IMGDIR/$(basename "/$4").pgz
# Renombrar el fichero de imagen si ya existe.
if [ -f "$IMGFILE" ]; then
    echo "[10] Renombrar \"$IMGFILE\" por \"$IMGFILE.ant\"."
    mv "$IMGFILE" "$IMGFILE.ant"
    mv "$IMGFILE.torrent" "$IMGFILE.torrent.ant" 2>/dev/null
fi
# Mostrar información.
echo "[15] $PROG: Origen=$PART, Destino=$IMGFILE"

# Reducir el sistema de archvios. 
echo "[20]: Reducir sistema de archivos." 
SIZE=$(ogGetPartitionSize "$1" "$2")
REDSIZE=$(ogReduceFs $1 $2) || REDSIZE=$[SIZE+1] 
if [ $REDSIZE -lt $SIZE ]; then 
    echo "[25] Redimensionar particion a $REDSIZE KB." 
    ogSetPartitionSize $1 $2 $REDSIZE 
fi 
# Comprobar consistencia del sistema de archivos.
echo "[30] Comprobar sistema de archivos."
ogCheckFs $1 $2

# Crear la imagen.
echo "[40] Crear imagen."
ogCreateImage "$@"
EXITCODE=$? 

# Restaurar tamaño. 
if [ $REDSIZE -lt $SIZE ]; then 
    echo "[85] Redimensionar particion a $SIZE KB." 
    ogSetPartitionSize $1 $2 $SIZE 
    echo "[90] Extender sistema de archivos." 
    ogExtendFs $1 $2 
fi

TIME=$[SECONDS-TIME1]
echo "[100] Duracion de la operacion $[TIME/60]m $[TIME%60]s"

# Código de salida.
exit $EXITCODE