summaryrefslogtreecommitdiffstats
path: root/client/shared/etc/preinit/metadevs.sh.NoUsed
blob: 0870e55276bf6c8386192c947c0111283009722d (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
#!/bin/bash
#/**
#@file    metadevs.sh
#@brief   Script de inicio para detectar metadispositivos LVM y RAID.
#@note    Desglose del script "loadenviron.sh".
#@warning License: GNU GPLv3+
#@version 0.9
#@author  Ramon Gomez, ETSII Universidad de Sevilla
#@date    2009-10-10
#@version 0.9.4
#@author  Ramon Gomez, ETSII Universidad de Sevilla
#@date    2010-04-19
#*/


# Si está configurado OpenGNSys ...
if [ -n "$OPENGNSYS" ]; then
    echo "$MSG_DETECTLVMRAID"
    # Detectar metadispositivos LVM.
    vgchange -ay >/dev/null 2>&1
    # Detectar metadispositivos RAID.
    dmraid -ay >/dev/null 2>&1
else
    # FIXME Error: entorno de OpenGNSys no configurado.
    echo "Error: OpenGNSys environment is not configured."   # FIXME: definir mensaje.
    exit 1
fi