[a01156a] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | ##################################################################### |
---|
| 4 | ####### Script instalador OpenGnsys |
---|
| 5 | ####### autor: Luis Guillén <lguillen@unizar.es> |
---|
| 6 | ##################################################################### |
---|
| 7 | |
---|
| 8 | |
---|
[1e7eaab] | 9 | |
---|
[8fc9552] | 10 | #### AVISO: Editar configuración de acceso por defecto a la Base de Datos. |
---|
[4a3cd1f] | 11 | MYSQL_ROOT_PASSWORD="passwordroot" # Clave root de MySQL |
---|
| 12 | OPENGNSYS_DATABASE="ogAdmBD" # Nombre de la base datos |
---|
| 13 | OPENGNSYS_DB_USER="usuog" # Usuario de acceso |
---|
| 14 | OPENGNSYS_DB_PASSWD="passusuog" # Clave del usuario |
---|
| 15 | |
---|
[8fc9552] | 16 | #### AVISO: NO EDITAR. |
---|
| 17 | #### configuración de acceso smb para clientes OG. |
---|
| 18 | OPENGNSYS_CLIENT_USER="opengnsys" # Nombre del usuario |
---|
| 19 | OPENGNSYS_CLIENT_PASSWD="og" # Clave del usuario opengnsys |
---|
| 20 | |
---|
| 21 | |
---|
[4a3cd1f] | 22 | |
---|
[1e7eaab] | 23 | # Sólo ejecutable por usuario root |
---|
| 24 | if [ "$(whoami)" != 'root' ] |
---|
| 25 | then |
---|
| 26 | echo "ERROR: this program must run under root privileges!!" |
---|
| 27 | exit 1 |
---|
| 28 | fi |
---|
| 29 | |
---|
[c1e00e4] | 30 | # Detectar sistema operativo del servidor (debe soportar LSB). |
---|
| 31 | OSDISTRIB=$(lsb_release -is 2>/dev/null) |
---|
| 32 | # Array con las dependencias que deben estar instaladas, según de la distribución detectada. |
---|
| 33 | case "$OSDISTRIB" in |
---|
| 34 | Ubuntu) DEPENDENCIES=( subversion apache2 php5 libapache2-mod-php5 mysql-server php5-mysql nfs-kernel-server dhcp3-server bittorrent tftp-hpa tftpd-hpa syslinux openbsd-inetd update-inetd build-essential g++-multilib libmysqlclient15-dev wget doxygen graphviz bittornado ctorrent samba unzip netpipes debootstrap schroot squashfs-tools ) |
---|
| 35 | ;; |
---|
| 36 | *) echo "ERROR: Distribution not supported by OpenGnSys." |
---|
| 37 | exit 1 ;; |
---|
| 38 | esac |
---|
| 39 | |
---|
[1e7eaab] | 40 | # Comprobar si se ha descargado el paquete comprimido (USESVN=0) o sólo el instalador (USESVN=1). |
---|
[49c6891] | 41 | PROGRAMDIR=$(readlink -e $(dirname "$0")) |
---|
[07c3a59] | 42 | OPENGNSYS_SERVER="www.opengnsys.es" |
---|
[1e7eaab] | 43 | if [ -d "$PROGRAMDIR/../installer" ]; then |
---|
| 44 | USESVN=0 |
---|
| 45 | else |
---|
| 46 | USESVN=1 |
---|
| 47 | fi |
---|
[eb9424f] | 48 | SVN_URL="http://$OPENGNSYS_SERVER/svn/branches/version1.0/" |
---|
[1e7eaab] | 49 | |
---|
[a01156a] | 50 | WORKDIR=/tmp/opengnsys_installer |
---|
[1e7eaab] | 51 | mkdir -p $WORKDIR |
---|
| 52 | |
---|
| 53 | INSTALL_TARGET=/opt/opengnsys |
---|
[13a01a7] | 54 | LOG_FILE=/tmp/opengnsys_installation.log |
---|
[a01156a] | 55 | |
---|
[4a3cd1f] | 56 | # Base de datos |
---|
[7510561] | 57 | OPENGNSYS_DB_CREATION_FILE=opengnsys/admin/Database/ogAdmBD.sql |
---|
[3aaf91d] | 58 | |
---|
[a01156a] | 59 | |
---|
| 60 | ##################################################################### |
---|
| 61 | ####### Algunas funciones útiles de propósito general: |
---|
| 62 | ##################################################################### |
---|
[13a01a7] | 63 | function getDateTime() |
---|
[a01156a] | 64 | { |
---|
[e0edc14] | 65 | date "+%Y%m%d-%H%M%S" |
---|
[a01156a] | 66 | } |
---|
| 67 | |
---|
| 68 | # Escribe a fichero y muestra por pantalla |
---|
[13a01a7] | 69 | function echoAndLog() |
---|
[a01156a] | 70 | { |
---|
[e0edc14] | 71 | echo "$1" |
---|
[a01156a] | 72 | FECHAHORA=`getDateTime` |
---|
| 73 | echo "$FECHAHORA;$SSH_CLIENT;$1" >> $LOG_FILE |
---|
| 74 | } |
---|
| 75 | |
---|
[13a01a7] | 76 | function errorAndLog() |
---|
[a01156a] | 77 | { |
---|
| 78 | echo "ERROR: $1" |
---|
| 79 | FECHAHORA=`getDateTime` |
---|
| 80 | echo "$FECHAHORA;$SSH_CLIENT;ERROR: $1" >> $LOG_FILE |
---|
| 81 | } |
---|
| 82 | |
---|
| 83 | # comprueba si el elemento pasado en $2 esta en el array $1 |
---|
[13a01a7] | 84 | function isInArray() |
---|
[a01156a] | 85 | { |
---|
| 86 | if [ $# -ne 2 ]; then |
---|
[13a01a7] | 87 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 88 | exit 1 |
---|
| 89 | fi |
---|
| 90 | |
---|
[13a01a7] | 91 | echoAndLog "${FUNCNAME}(): checking if $2 is in $1" |
---|
[a01156a] | 92 | local deps |
---|
[5c33840] | 93 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 94 | elemento=$2 |
---|
| 95 | |
---|
| 96 | local is_in_array=1 |
---|
| 97 | # copia local del array del parametro 1 |
---|
| 98 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 99 | do |
---|
| 100 | if [ "${deps[$i]}" = "${elemento}" ]; then |
---|
| 101 | echoAndLog "isInArray(): $elemento found in array" |
---|
| 102 | is_in_array=0 |
---|
| 103 | fi |
---|
| 104 | done |
---|
| 105 | |
---|
| 106 | if [ $is_in_array -ne 0 ]; then |
---|
[13a01a7] | 107 | echoAndLog "${FUNCNAME}(): $elemento NOT found in array" |
---|
[a01156a] | 108 | fi |
---|
| 109 | |
---|
| 110 | return $is_in_array |
---|
| 111 | |
---|
| 112 | } |
---|
| 113 | |
---|
| 114 | ##################################################################### |
---|
| 115 | ####### Funciones de manejo de paquetes Debian |
---|
| 116 | ##################################################################### |
---|
| 117 | |
---|
[13a01a7] | 118 | function checkPackage() |
---|
[a01156a] | 119 | { |
---|
| 120 | package=$1 |
---|
| 121 | if [ -z $package ]; then |
---|
[73cfa0a] | 122 | errorAndLog "${FUNCNAME}(): parameter required" |
---|
[a01156a] | 123 | exit 1 |
---|
| 124 | fi |
---|
[73cfa0a] | 125 | echoAndLog "${FUNCNAME}(): checking if package $package exists" |
---|
[da8db11] | 126 | dpkg -s $package &>/dev/null | grep Status | grep -qw install |
---|
[a01156a] | 127 | if [ $? -eq 0 ]; then |
---|
[73cfa0a] | 128 | echoAndLog "${FUNCNAME}(): package $package exists" |
---|
[a01156a] | 129 | return 0 |
---|
| 130 | else |
---|
[73cfa0a] | 131 | echoAndLog "${FUNCNAME}(): package $package doesn't exists" |
---|
[a01156a] | 132 | return 1 |
---|
| 133 | fi |
---|
| 134 | } |
---|
| 135 | |
---|
| 136 | # recibe array con dependencias |
---|
| 137 | # por referencia deja un array con las dependencias no resueltas |
---|
| 138 | # devuelve 1 si hay alguna dependencia no resuelta |
---|
[13a01a7] | 139 | function checkDependencies() |
---|
[a01156a] | 140 | { |
---|
| 141 | if [ $# -ne 2 ]; then |
---|
[73cfa0a] | 142 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 143 | exit 1 |
---|
| 144 | fi |
---|
| 145 | |
---|
[73cfa0a] | 146 | echoAndLog "${FUNCNAME}(): checking dependences" |
---|
[a01156a] | 147 | uncompletedeps=0 |
---|
| 148 | |
---|
| 149 | # copia local del array del parametro 1 |
---|
| 150 | local deps |
---|
[5c33840] | 151 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 152 | |
---|
| 153 | declare -a local_notinstalled |
---|
[5c33840] | 154 | |
---|
[a01156a] | 155 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 156 | do |
---|
| 157 | checkPackage ${deps[$i]} |
---|
| 158 | if [ $? -ne 0 ]; then |
---|
| 159 | local_notinstalled[$uncompletedeps]=$package |
---|
| 160 | let uncompletedeps=uncompletedeps+1 |
---|
| 161 | fi |
---|
| 162 | done |
---|
| 163 | |
---|
| 164 | # relleno el array especificado en $2 por referencia |
---|
| 165 | for (( i = 0 ; i < ${#local_notinstalled[@]} ; i++ )) |
---|
| 166 | do |
---|
| 167 | eval "${2}[$i]=${local_notinstalled[$i]}" |
---|
| 168 | done |
---|
| 169 | |
---|
| 170 | # retorna el numero de paquetes no resueltos |
---|
[73cfa0a] | 171 | echoAndLog "${FUNCNAME}(): dependencies uncompleted: $uncompletedeps" |
---|
[a01156a] | 172 | return $uncompletedeps |
---|
| 173 | } |
---|
| 174 | |
---|
| 175 | # Recibe un array con las dependencias y lo instala |
---|
[13a01a7] | 176 | function installDependencies() |
---|
[a01156a] | 177 | { |
---|
| 178 | if [ $# -ne 1 ]; then |
---|
[813f617] | 179 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 180 | exit 1 |
---|
| 181 | fi |
---|
[813f617] | 182 | echoAndLog "${FUNCNAME}(): installing uncompleted dependencies" |
---|
[a01156a] | 183 | |
---|
| 184 | # copia local del array del parametro 1 |
---|
| 185 | local deps |
---|
[5c33840] | 186 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 187 | |
---|
| 188 | local string_deps="" |
---|
| 189 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 190 | do |
---|
| 191 | string_deps="$string_deps ${deps[$i]}" |
---|
| 192 | done |
---|
| 193 | |
---|
| 194 | if [ -z "${string_deps}" ]; then |
---|
[813f617] | 195 | errorAndLog "${FUNCNAME}(): array of dependeces is empty" |
---|
[a01156a] | 196 | exit 1 |
---|
| 197 | fi |
---|
| 198 | |
---|
| 199 | OLD_DEBIAN_FRONTEND=$DEBIAN_FRONTEND |
---|
| 200 | export DEBIAN_FRONTEND=noninteractive |
---|
| 201 | |
---|
[813f617] | 202 | echoAndLog "${FUNCNAME}(): now ${string_deps} will be installed" |
---|
[a01156a] | 203 | apt-get -y install --force-yes ${string_deps} |
---|
| 204 | if [ $? -ne 0 ]; then |
---|
[813f617] | 205 | errorAndLog "${FUNCNAME}(): error installing dependencies" |
---|
[a01156a] | 206 | return 1 |
---|
| 207 | fi |
---|
| 208 | |
---|
| 209 | DEBIAN_FRONTEND=$OLD_DEBIAN_FRONTEND |
---|
[813f617] | 210 | echoAndLog "${FUNCNAME}(): dependencies installed" |
---|
[a01156a] | 211 | } |
---|
| 212 | |
---|
[13a01a7] | 213 | # Hace un backup del fichero pasado por parámetro |
---|
| 214 | # deja un -last y uno para el día |
---|
| 215 | function backupFile() |
---|
| 216 | { |
---|
| 217 | if [ $# -ne 1 ]; then |
---|
| 218 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 219 | exit 1 |
---|
| 220 | fi |
---|
| 221 | |
---|
| 222 | local fichero=$1 |
---|
| 223 | local fecha=`date +%Y%m%d` |
---|
| 224 | |
---|
| 225 | if [ ! -f $fichero ]; then |
---|
| 226 | errorAndLog "${FUNCNAME}(): file $fichero doesn't exists" |
---|
| 227 | return 1 |
---|
| 228 | fi |
---|
| 229 | |
---|
| 230 | echoAndLog "${FUNCNAME}(): realizando backup de $fichero" |
---|
| 231 | |
---|
| 232 | # realiza una copia de la última configuración como last |
---|
| 233 | cp -p $fichero "${fichero}-LAST" |
---|
| 234 | |
---|
| 235 | # si para el día no hay backup lo hace, sino no |
---|
| 236 | if [ ! -f "${fichero}-${fecha}" ]; then |
---|
| 237 | cp -p $fichero "${fichero}-${fecha}" |
---|
| 238 | fi |
---|
| 239 | |
---|
| 240 | echoAndLog "${FUNCNAME}(): backup realizado" |
---|
| 241 | } |
---|
| 242 | |
---|
[a01156a] | 243 | ##################################################################### |
---|
| 244 | ####### Funciones para el manejo de bases de datos |
---|
| 245 | ##################################################################### |
---|
| 246 | |
---|
| 247 | # This function set password to root |
---|
[13a01a7] | 248 | function mysqlSetRootPassword() |
---|
[a01156a] | 249 | { |
---|
| 250 | if [ $# -ne 1 ]; then |
---|
[813f617] | 251 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 252 | exit 1 |
---|
| 253 | fi |
---|
| 254 | |
---|
[e0edc14] | 255 | local root_mysql="$1" |
---|
[813f617] | 256 | echoAndLog "${FUNCNAME}(): setting root password in MySQL server" |
---|
[e0edc14] | 257 | mysqladmin -u root password "$root_mysql" |
---|
[a01156a] | 258 | if [ $? -ne 0 ]; then |
---|
[813f617] | 259 | errorAndLog "${FUNCNAME}(): error while setting root password in MySQL server" |
---|
[a01156a] | 260 | return 1 |
---|
| 261 | fi |
---|
[813f617] | 262 | echoAndLog "${FUNCNAME}(): root password saved!" |
---|
[a01156a] | 263 | return 0 |
---|
| 264 | } |
---|
| 265 | |
---|
[892606b9] | 266 | # Si el servicio mysql esta ya instalado cambia la variable de la clave del root por la ya existente |
---|
[e0edc14] | 267 | function mysqlGetRootPassword() |
---|
| 268 | { |
---|
[892606b9] | 269 | local pass_mysql |
---|
| 270 | local pass_mysql2 |
---|
[7c54b49] | 271 | # Comprobar si MySQL está instalado con la clave de root por defecto. |
---|
| 272 | if mysql -u root -p"$MYSQL_ROOT_PASSWORD" <<<"quit" 2>/dev/null; then |
---|
| 273 | echoAndLog "${FUNCNAME}(): Using default mysql root password." |
---|
| 274 | else |
---|
| 275 | stty -echo |
---|
[e0edc14] | 276 | echo "There is a MySQL service already installed." |
---|
| 277 | read -p "Enter MySQL root password: " pass_mysql |
---|
[7c54b49] | 278 | echo "" |
---|
[e0edc14] | 279 | read -p "Confrim password:" pass_mysql2 |
---|
[7c54b49] | 280 | echo "" |
---|
| 281 | stty echo |
---|
| 282 | if [ "$pass_mysql" == "$pass_mysql2" ] ;then |
---|
[e0edc14] | 283 | MYSQL_ROOT_PASSWORD="$pass_mysql" |
---|
[7c54b49] | 284 | return 0 |
---|
| 285 | else |
---|
[e0edc14] | 286 | echo "The keys don't match. Do not configure the server's key," |
---|
| 287 | echo "transactions in the database will give error." |
---|
[7c54b49] | 288 | return 1 |
---|
| 289 | fi |
---|
[892606b9] | 290 | fi |
---|
| 291 | } |
---|
| 292 | |
---|
[a01156a] | 293 | # comprueba si puede conectar con mysql con el usuario root |
---|
| 294 | function mysqlTestConnection() |
---|
| 295 | { |
---|
| 296 | if [ $# -ne 1 ]; then |
---|
[e0edc14] | 297 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 298 | exit 1 |
---|
| 299 | fi |
---|
| 300 | |
---|
| 301 | local root_password="${1}" |
---|
[e0edc14] | 302 | echoAndLog "${FUNCNAME}(): checking connection to mysql..." |
---|
[a01156a] | 303 | echo "" | mysql -uroot -p"${root_password}" |
---|
| 304 | if [ $? -ne 0 ]; then |
---|
[e0edc14] | 305 | errorAndLog "${FUNCNAME}(): connection to mysql failed, check root password and if daemon is running!" |
---|
[a01156a] | 306 | return 1 |
---|
| 307 | else |
---|
[e0edc14] | 308 | echoAndLog "${FUNCNAME}(): connection success" |
---|
[a01156a] | 309 | return 0 |
---|
| 310 | fi |
---|
| 311 | } |
---|
| 312 | |
---|
| 313 | # comprueba si la base de datos existe |
---|
| 314 | function mysqlDbExists() |
---|
| 315 | { |
---|
| 316 | if [ $# -ne 2 ]; then |
---|
[e0edc14] | 317 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 318 | exit 1 |
---|
| 319 | fi |
---|
| 320 | |
---|
| 321 | local root_password="${1}" |
---|
| 322 | local database=$2 |
---|
[e0edc14] | 323 | echoAndLog "${FUNCNAME}(): checking if $database exists..." |
---|
[a01156a] | 324 | echo "show databases" | mysql -uroot -p"${root_password}" | grep "^${database}$" |
---|
| 325 | if [ $? -ne 0 ]; then |
---|
[e0edc14] | 326 | echoAndLog "${FUNCNAME}():database $database doesn't exists" |
---|
[a01156a] | 327 | return 1 |
---|
| 328 | else |
---|
[e0edc14] | 329 | echoAndLog "${FUNCNAME}():database $database exists" |
---|
[a01156a] | 330 | return 0 |
---|
| 331 | fi |
---|
| 332 | } |
---|
| 333 | |
---|
| 334 | function mysqlCheckDbIsEmpty() |
---|
| 335 | { |
---|
| 336 | if [ $# -ne 2 ]; then |
---|
[e0edc14] | 337 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 338 | exit 1 |
---|
| 339 | fi |
---|
| 340 | |
---|
| 341 | local root_password="${1}" |
---|
| 342 | local database=$2 |
---|
[e0edc14] | 343 | echoAndLog "${FUNCNAME}(): checking if $database is empty..." |
---|
[a01156a] | 344 | num_tablas=`echo "show tables" | mysql -uroot -p"${root_password}" "${database}" | wc -l` |
---|
| 345 | if [ $? -ne 0 ]; then |
---|
[e0edc14] | 346 | errorAndLog "${FUNCNAME}(): error executing query, check database and root password" |
---|
[a01156a] | 347 | exit 1 |
---|
| 348 | fi |
---|
| 349 | |
---|
| 350 | if [ $num_tablas -eq 0 ]; then |
---|
[e0edc14] | 351 | echoAndLog "${FUNCNAME}():database $database is empty" |
---|
[a01156a] | 352 | return 0 |
---|
| 353 | else |
---|
[e0edc14] | 354 | echoAndLog "${FUNCNAME}():database $database has tables" |
---|
[a01156a] | 355 | return 1 |
---|
| 356 | fi |
---|
| 357 | |
---|
| 358 | } |
---|
| 359 | |
---|
| 360 | |
---|
| 361 | function mysqlImportSqlFileToDb() |
---|
| 362 | { |
---|
| 363 | if [ $# -ne 3 ]; then |
---|
[c5ce04c] | 364 | errorAndLog "${FNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 365 | exit 1 |
---|
| 366 | fi |
---|
| 367 | |
---|
[c4321ae] | 368 | local root_password="$1" |
---|
| 369 | local database="$2" |
---|
| 370 | local sqlfile="$3" |
---|
| 371 | local tmpfile=$(mktemp) |
---|
| 372 | local status |
---|
[a01156a] | 373 | |
---|
| 374 | if [ ! -f $sqlfile ]; then |
---|
[c5ce04c] | 375 | errorAndLog "${FUNCNAME}(): Unable to locate $sqlfile!!" |
---|
[a01156a] | 376 | return 1 |
---|
| 377 | fi |
---|
| 378 | |
---|
[c5ce04c] | 379 | echoAndLog "${FUNCNAME}(): importing sql file to ${database}..." |
---|
[c4321ae] | 380 | chmod 600 $tmpfile |
---|
| 381 | sed -e "s/SERVERIP/$SERVERIP/g" -e "s/DBUSER/$OPENGNSYS_DB_USER/g" \ |
---|
| 382 | -e "s/DBPASSWORD/$OPENGNSYS_DB_PASSWD/g" $sqlfile > $tmpfile |
---|
| 383 | mysql -uroot -p"${root_password}" --default-character-set=utf8 "${database}" < $tmpfile |
---|
| 384 | status=$? |
---|
| 385 | rm -f $tmpfile |
---|
| 386 | if [ $status -ne 0 ]; then |
---|
[c5ce04c] | 387 | errorAndLog "${FUNCNAME}(): error while importing $sqlfile in database $database" |
---|
[a01156a] | 388 | return 1 |
---|
| 389 | fi |
---|
[c5ce04c] | 390 | echoAndLog "${FUNCNAME}(): file imported to database $database" |
---|
[a01156a] | 391 | return 0 |
---|
| 392 | } |
---|
| 393 | |
---|
| 394 | # Crea la base de datos |
---|
| 395 | function mysqlCreateDb() |
---|
| 396 | { |
---|
| 397 | if [ $# -ne 2 ]; then |
---|
[a555f49] | 398 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 399 | exit 1 |
---|
| 400 | fi |
---|
| 401 | |
---|
| 402 | local root_password="${1}" |
---|
| 403 | local database=$2 |
---|
| 404 | |
---|
[a555f49] | 405 | echoAndLog "${FUNCNAME}(): creating database..." |
---|
[a01156a] | 406 | mysqladmin -u root --password="${root_password}" create $database |
---|
| 407 | if [ $? -ne 0 ]; then |
---|
[a555f49] | 408 | errorAndLog "${FUNCNAME}(): error while creating database $database" |
---|
[a01156a] | 409 | return 1 |
---|
| 410 | fi |
---|
[a555f49] | 411 | echoAndLog "${FUNCNAME}(): database $database created" |
---|
[a01156a] | 412 | return 0 |
---|
| 413 | } |
---|
| 414 | |
---|
| 415 | |
---|
| 416 | function mysqlCheckUserExists() |
---|
| 417 | { |
---|
| 418 | if [ $# -ne 2 ]; then |
---|
[e0edc14] | 419 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 420 | exit 1 |
---|
| 421 | fi |
---|
| 422 | |
---|
| 423 | local root_password="${1}" |
---|
| 424 | local userdb=$2 |
---|
| 425 | |
---|
[e0edc14] | 426 | echoAndLog "${FUNCNAME}(): checking if $userdb exists..." |
---|
[a01156a] | 427 | echo "select user from user where user='${userdb}'\\G" |mysql -uroot -p"${root_password}" mysql | grep user |
---|
| 428 | if [ $? -ne 0 ]; then |
---|
[e0edc14] | 429 | echoAndLog "${FUNCNAME}(): user doesn't exists" |
---|
[a01156a] | 430 | return 1 |
---|
| 431 | else |
---|
[e0edc14] | 432 | echoAndLog "${FUNCNAME}(): user already exists" |
---|
[a01156a] | 433 | return 0 |
---|
| 434 | fi |
---|
| 435 | |
---|
| 436 | } |
---|
| 437 | |
---|
| 438 | # Crea un usuario administrativo para la base de datos |
---|
| 439 | function mysqlCreateAdminUserToDb() |
---|
| 440 | { |
---|
| 441 | if [ $# -ne 4 ]; then |
---|
[e0edc14] | 442 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 443 | exit 1 |
---|
| 444 | fi |
---|
| 445 | |
---|
| 446 | local root_password=$1 |
---|
| 447 | local database=$2 |
---|
| 448 | local userdb=$3 |
---|
| 449 | local passdb=$4 |
---|
| 450 | |
---|
[e0edc14] | 451 | echoAndLog "${FUNCNAME}(): creating admin user ${userdb} to database ${database}" |
---|
[a01156a] | 452 | |
---|
| 453 | cat > $WORKDIR/create_${database}.sql <<EOF |
---|
| 454 | GRANT USAGE ON *.* TO '${userdb}'@'localhost' IDENTIFIED BY '${passdb}' ; |
---|
| 455 | GRANT ALL PRIVILEGES ON ${database}.* TO '${userdb}'@'localhost' WITH GRANT OPTION ; |
---|
| 456 | FLUSH PRIVILEGES ; |
---|
| 457 | EOF |
---|
| 458 | mysql -u root --password=${root_password} < $WORKDIR/create_${database}.sql |
---|
| 459 | if [ $? -ne 0 ]; then |
---|
[e0edc14] | 460 | errorAndLog "${FUNCNAME}(): error while creating user in mysql" |
---|
[a01156a] | 461 | rm -f $WORKDIR/create_${database}.sql |
---|
| 462 | return 1 |
---|
| 463 | else |
---|
[e0edc14] | 464 | echoAndLog "${FUNCNAME}(): user created ok" |
---|
[a01156a] | 465 | rm -f $WORKDIR/create_${database}.sql |
---|
| 466 | return 0 |
---|
| 467 | fi |
---|
| 468 | } |
---|
| 469 | |
---|
| 470 | |
---|
| 471 | ##################################################################### |
---|
| 472 | ####### Funciones para el manejo de Subversion |
---|
| 473 | ##################################################################### |
---|
| 474 | |
---|
[13a01a7] | 475 | function svnExportCode() |
---|
| 476 | { |
---|
| 477 | if [ $# -ne 1 ]; then |
---|
| 478 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 479 | exit 1 |
---|
| 480 | fi |
---|
| 481 | |
---|
[6090a2d] | 482 | local url="$1" |
---|
[13a01a7] | 483 | |
---|
| 484 | echoAndLog "${FUNCNAME}(): downloading subversion code..." |
---|
| 485 | |
---|
[6090a2d] | 486 | svn export --force "$url" opengnsys |
---|
[13a01a7] | 487 | if [ $? -ne 0 ]; then |
---|
[6090a2d] | 488 | errorAndLog "${FUNCNAME}(): error getting OpenGnSys code from $url" |
---|
[13a01a7] | 489 | return 1 |
---|
| 490 | fi |
---|
| 491 | echoAndLog "${FUNCNAME}(): subversion code downloaded" |
---|
| 492 | return 0 |
---|
| 493 | } |
---|
| 494 | |
---|
| 495 | |
---|
[892606b9] | 496 | ############################################################ |
---|
[7586ca3] | 497 | ### Detectar red |
---|
| 498 | ############################################################ |
---|
| 499 | |
---|
[07c3a59] | 500 | # Comprobar si existe conexión. |
---|
| 501 | function checkNetworkConnection() |
---|
| 502 | { |
---|
| 503 | OPENGNSYS_SERVER=${OPENGNSYS_SERVER:-"www.opengnsys.es"} |
---|
| 504 | wget --spider -q $OPENGNSYS_SERVER |
---|
| 505 | } |
---|
| 506 | |
---|
| 507 | # Obtener los parámetros de red de la interfaz por defecto. |
---|
[7586ca3] | 508 | function getNetworkSettings() |
---|
| 509 | { |
---|
| 510 | # Variables globales definidas: |
---|
| 511 | # - SERVERIP: IP local del servidor. |
---|
| 512 | # - NETIP: IP de la red. |
---|
| 513 | # - NETMASK: máscara de red. |
---|
| 514 | # - NETBROAD: IP de difusión de la red. |
---|
| 515 | # - ROUTERIP: IP del router. |
---|
| 516 | # - DNSIP: IP del servidor DNS. |
---|
| 517 | |
---|
[62e3bcf] | 518 | local MAINDEV |
---|
| 519 | |
---|
| 520 | echoAndLog "${FUNCNAME}(): Detecting default network parameters." |
---|
| 521 | MAINDEV=$(ip -o link show up | awk '!/loopback/ {d=d$2} END {sub(/:.*/,"",d); print d}') |
---|
| 522 | if [ -z "$MAINDEV" ]; then |
---|
| 523 | errorAndLog "${FUNCNAME}(): Network device not detected." |
---|
| 524 | exit 1 |
---|
| 525 | fi |
---|
| 526 | SERVERIP=$(ip -o addr show dev $MAINDEV | awk '$3~/inet$/ {sub (/\/.*/, ""); print ($4)}') |
---|
| 527 | NETMASK=$(LANG=C ifconfig $MAINDEV | awk '/Mask/ {sub(/.*:/,"",$4); print $4}') |
---|
| 528 | NETBROAD=$(ip -o addr show dev $MAINDEV | awk '$3~/inet$/ {print ($6)}') |
---|
[b94a1b2] | 529 | NETIP=$(netstat -nr | grep $MAINDEV | awk '$1!~/0\.0\.0\.0/ {if (n=="") n=$1} END {print n}') |
---|
[7586ca3] | 530 | ROUTERIP=$(netstat -nr | awk '$1~/0\.0\.0\.0/ {print $2}') |
---|
[a555f49] | 531 | DNSIP=$(awk '/nameserver/ {print $2}' /etc/resolv.conf | head -n1) |
---|
[7586ca3] | 532 | if [ -z "$NETIP" -o -z "$NETMASK" ]; then |
---|
[62e3bcf] | 533 | errorAndLog "${FUNCNAME}(): Network not detected." |
---|
[7586ca3] | 534 | exit 1 |
---|
| 535 | fi |
---|
[cc7eab7] | 536 | |
---|
| 537 | # Variables de ejecución de Apache |
---|
| 538 | # - APACHE_RUN_USER |
---|
| 539 | # - APACHE_RUN_GROUP |
---|
| 540 | if [ -f /etc/apache2/envvars ]; then |
---|
| 541 | source /etc/apache2/envvars |
---|
| 542 | fi |
---|
| 543 | APACHE_RUN_USER=${APACHE_RUN_USER:-"www-data"} |
---|
| 544 | APACHE_RUN_GROUP=${APACHE_RUN_GROUP:-"www-data"} |
---|
[7586ca3] | 545 | } |
---|
| 546 | |
---|
| 547 | |
---|
| 548 | ############################################################ |
---|
[892606b9] | 549 | ### Esqueleto para el Servicio pxe y contenedor tftpboot ### |
---|
| 550 | ############################################################ |
---|
| 551 | |
---|
[e0edc14] | 552 | function tftpConfigure() |
---|
| 553 | { |
---|
| 554 | echoAndLog "${FUNCNAME}(): Configuring TFTP service." |
---|
[892606b9] | 555 | basetftp=/var/lib/tftpboot |
---|
| 556 | |
---|
| 557 | # reiniciamos demonio internet ????? porque ???? |
---|
| 558 | /etc/init.d/openbsd-inetd start |
---|
| 559 | |
---|
| 560 | # preparacion contenedor tftpboot |
---|
| 561 | cp -pr /usr/lib/syslinux/ ${basetftp}/syslinux |
---|
| 562 | cp /usr/lib/syslinux/pxelinux.0 ${basetftp} |
---|
| 563 | # prepamos el directorio de la configuracion de pxe |
---|
| 564 | mkdir -p ${basetftp}/pxelinux.cfg |
---|
| 565 | cat > ${basetftp}/pxelinux.cfg/default <<EOF |
---|
[8fc9552] | 566 | DEFAULT syslinux/vesamenu.c32 |
---|
| 567 | MENU TITLE Aplicacion GNSYS |
---|
| 568 | |
---|
| 569 | LABEL 1 |
---|
| 570 | MENU LABEL 1 |
---|
| 571 | KERNEL syslinux/chain.c32 |
---|
| 572 | APPEND hd0 |
---|
| 573 | |
---|
| 574 | PROMPT 0 |
---|
| 575 | TIMEOUT 10 |
---|
[892606b9] | 576 | EOF |
---|
| 577 | # comprobamos el servicio tftp |
---|
| 578 | sleep 1 |
---|
| 579 | testPxe |
---|
| 580 | ## damos perfimos de lectura a usuario web. |
---|
[cc7eab7] | 581 | chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP ${basetftp} |
---|
[892606b9] | 582 | } |
---|
| 583 | |
---|
[e0edc14] | 584 | function testPxe () |
---|
| 585 | { |
---|
| 586 | echoAndLog "${FUNCNAME}(): Checking TFTP service... please wait." |
---|
[892606b9] | 587 | cd /tmp |
---|
[e0edc14] | 588 | tftp -v localhost -c get pxelinux.0 /tmp/pxelinux.0 && echoAndLog "TFTP service is OK." || errorAndLog "TFTP service is down." |
---|
[892606b9] | 589 | cd / |
---|
| 590 | } |
---|
| 591 | |
---|
[8fc9552] | 592 | |
---|
[892606b9] | 593 | ######################################################################## |
---|
[b6906f7] | 594 | ## Configuracion servicio NFS |
---|
[892606b9] | 595 | ######################################################################## |
---|
| 596 | |
---|
[13a01a7] | 597 | # ADVERTENCIA: usa variables globales NETIP y NETMASK! |
---|
| 598 | function nfsConfigure() |
---|
[7586ca3] | 599 | { |
---|
[13a01a7] | 600 | echoAndLog "${FUNCNAME}(): Config nfs server." |
---|
| 601 | |
---|
| 602 | backupFile /etc/exports |
---|
| 603 | |
---|
| 604 | nfsAddExport /opt/opengnsys/client ${NETIP}/${NETMASK}:ro,no_subtree_check,no_root_squash,sync |
---|
| 605 | if [ $? -ne 0 ]; then |
---|
| 606 | errorAndLog "${FUNCNAME}(): error while adding nfs client config" |
---|
| 607 | return 1 |
---|
| 608 | fi |
---|
| 609 | |
---|
| 610 | nfsAddExport /opt/opengnsys/images ${NETIP}/${NETMASK}:rw,no_subtree_check,no_root_squash,sync,crossmnt |
---|
| 611 | if [ $? -ne 0 ]; then |
---|
| 612 | errorAndLog "${FUNCNAME}(): error while adding nfs images config" |
---|
| 613 | return 1 |
---|
| 614 | fi |
---|
| 615 | |
---|
| 616 | nfsAddExport /opt/opengnsys/log/clients ${NETIP}/${NETMASK}:rw,no_subtree_check,no_root_squash,sync |
---|
| 617 | if [ $? -ne 0 ]; then |
---|
| 618 | errorAndLog "${FUNCNAME}(): error while adding logging client config" |
---|
| 619 | return 1 |
---|
| 620 | fi |
---|
| 621 | |
---|
[8fc9552] | 622 | nfsAddExport /var/lib/tftpboot ${NETIP}/${NETMASK}:ro,no_subtree_check,no_root_squash,sync |
---|
| 623 | if [ $? -ne 0 ]; then |
---|
| 624 | errorAndLog "${FUNCNAME}(): error while adding second filesystem for the pxe ogclient" |
---|
| 625 | return 1 |
---|
| 626 | fi |
---|
| 627 | |
---|
[7586ca3] | 628 | /etc/init.d/nfs-kernel-server restart |
---|
[13a01a7] | 629 | |
---|
[b6906f7] | 630 | exportfs -va |
---|
[13a01a7] | 631 | if [ $? -ne 0 ]; then |
---|
| 632 | errorAndLog "${FUNCNAME}(): error while configure exports" |
---|
| 633 | return 1 |
---|
| 634 | fi |
---|
| 635 | |
---|
| 636 | echoAndLog "${FUNCNAME}(): Added NFS configuration to file \"/etc/exports\"." |
---|
| 637 | return 0 |
---|
[b6906f7] | 638 | } |
---|
[892606b9] | 639 | |
---|
[b6906f7] | 640 | |
---|
[13a01a7] | 641 | # ejemplos: |
---|
| 642 | #nfsAddExport /opt/opengnsys 192.168.0.0/255.255.255.0:ro,no_subtree_check,no_root_squash,sync |
---|
| 643 | #nfsAddExport /opt/opengnsys 192.168.0.0/255.255.255.0 |
---|
| 644 | #nfsAddExport /opt/opengnsys 80.20.2.1:ro 192.123.32.2:rw |
---|
| 645 | function nfsAddExport() |
---|
| 646 | { |
---|
| 647 | if [ $# -lt 2 ]; then |
---|
| 648 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 649 | exit 1 |
---|
| 650 | fi |
---|
| 651 | |
---|
| 652 | if [ ! -f /etc/exports ]; then |
---|
| 653 | errorAndLog "${FUNCNAME}(): /etc/exports don't exists" |
---|
| 654 | return 1 |
---|
| 655 | fi |
---|
| 656 | |
---|
| 657 | local export="${1}" |
---|
| 658 | local contador=0 |
---|
| 659 | local cadenaexport |
---|
| 660 | |
---|
| 661 | grep "^${export}" /etc/exports > /dev/null |
---|
| 662 | if [ $? -eq 0 ]; then |
---|
| 663 | echoAndLog "${FUNCNAME}(): $export exists in /etc/exports, omiting" |
---|
| 664 | return 0 |
---|
| 665 | fi |
---|
| 666 | |
---|
| 667 | cadenaexport="${export}" |
---|
| 668 | for parametro in $* |
---|
| 669 | do |
---|
| 670 | if [ $contador -gt 0 ] |
---|
| 671 | then |
---|
| 672 | host=`echo $parametro | awk -F: '{print $1}'` |
---|
| 673 | options=`echo $parametro | awk -F: '{print $2}'` |
---|
| 674 | if [ "${host}" == "" ]; then |
---|
| 675 | errorAndLog "${FUNCNAME}(): host can't be empty" |
---|
| 676 | return 1 |
---|
| 677 | fi |
---|
| 678 | cadenaexport="${cadenaexport}\t${host}" |
---|
| 679 | |
---|
| 680 | if [ "${options}" != "" ]; then |
---|
| 681 | cadenaexport="${cadenaexport}(${options})" |
---|
| 682 | fi |
---|
| 683 | fi |
---|
| 684 | let contador=contador+1 |
---|
| 685 | done |
---|
| 686 | |
---|
| 687 | echo -en "$cadenaexport\n" >> /etc/exports |
---|
| 688 | |
---|
| 689 | echoAndLog "${FUNCNAME}(): add $export to /etc/exports" |
---|
| 690 | |
---|
| 691 | return 0 |
---|
| 692 | } |
---|
| 693 | |
---|
[8fc9552] | 694 | |
---|
| 695 | ######################################################################## |
---|
[813f617] | 696 | ## Configuracion servicio Samba |
---|
[8fc9552] | 697 | ######################################################################## |
---|
| 698 | function smbConfigure() |
---|
| 699 | { |
---|
[e0edc14] | 700 | echoAndLog "${FUNCNAME}(): Configuring Samba service." |
---|
[8fc9552] | 701 | |
---|
| 702 | backupFile /etc/samba/smb.conf |
---|
| 703 | |
---|
[813f617] | 704 | # Copiar plantailla de recursos para OpenGnSys |
---|
[c1e00e4] | 705 | sed -e "s/OPENGNSYSDIR/${INSTALL_TARGET//\//\\/}/g" \ |
---|
[edac247] | 706 | $WORKDIR/opengnsys/server/etc/smb-og.conf.tmpl > /etc/samba/smb-og.conf |
---|
[813f617] | 707 | # Configurar y recargar Samba" |
---|
[edac247] | 708 | perl -pi -e "s/WORKGROUP/OPENGNSYS/; s/server string \=.*/server string \= OpenGnSys Samba Server/; s/^\; *include \=.*$/ include \= \/etc\/samba\/smb-og.conf/" /etc/samba/smb.conf |
---|
[813f617] | 709 | /etc/init.d/smbd restart |
---|
[8fc9552] | 710 | if [ $? -ne 0 ]; then |
---|
[813f617] | 711 | errorAndLog "${FUNCNAME}(): error while configure Samba" |
---|
[8fc9552] | 712 | return 1 |
---|
| 713 | fi |
---|
[eb9424f] | 714 | # Crear clave para usuario de acceso a los recursos. |
---|
[813f617] | 715 | echo -ne "$OPENGNSYS_CLIENT_PASSWD\n$OPENGNSYS_CLIENT_PASSWD\n" | smbpasswd -a -s $OPENGNSYS_CLIENT_USER |
---|
[8fc9552] | 716 | |
---|
[813f617] | 717 | echoAndLog "${FUNCNAME}(): Added Samba configuration." |
---|
[8fc9552] | 718 | return 0 |
---|
| 719 | } |
---|
| 720 | |
---|
| 721 | |
---|
[b6906f7] | 722 | ######################################################################## |
---|
| 723 | ## Configuracion servicio DHCP |
---|
| 724 | ######################################################################## |
---|
| 725 | |
---|
[7586ca3] | 726 | function dhcpConfigure() |
---|
| 727 | { |
---|
[a555f49] | 728 | echoAndLog "${FUNCNAME}(): Sample DHCP Configuration." |
---|
| 729 | |
---|
| 730 | backupFile /etc/dhcp3/dhcpd.conf |
---|
| 731 | |
---|
[7586ca3] | 732 | sed -e "s/SERVERIP/$SERVERIP/g" \ |
---|
| 733 | -e "s/NETIP/$NETIP/g" \ |
---|
| 734 | -e "s/NETMASK/$NETMASK/g" \ |
---|
| 735 | -e "s/NETBROAD/$NETBROAD/g" \ |
---|
| 736 | -e "s/ROUTERIP/$ROUTERIP/g" \ |
---|
| 737 | -e "s/DNSIP/$DNSIP/g" \ |
---|
[813f617] | 738 | $WORKDIR/opengnsys/server/etc/dhcpd.conf.tmpl > /etc/dhcp3/dhcpd.conf |
---|
[a555f49] | 739 | if [ $? -ne 0 ]; then |
---|
| 740 | errorAndLog "${FUNCNAME}(): error while configuring dhcp server" |
---|
| 741 | return 1 |
---|
| 742 | fi |
---|
| 743 | |
---|
[7586ca3] | 744 | /etc/init.d/dhcp3-server restart |
---|
[a555f49] | 745 | echoAndLog "${FUNCNAME}(): Sample DHCP Configured in file \"/etc/dhcp3/dhcpd.conf\"." |
---|
| 746 | return 0 |
---|
[892606b9] | 747 | } |
---|
| 748 | |
---|
| 749 | |
---|
[a01156a] | 750 | ##################################################################### |
---|
| 751 | ####### Funciones específicas de la instalación de Opengnsys |
---|
| 752 | ##################################################################### |
---|
| 753 | |
---|
[49c6891] | 754 | # Copiar ficheros del OpenGnSys Web Console. |
---|
[7586ca3] | 755 | function installWebFiles() |
---|
| 756 | { |
---|
[dce072b] | 757 | echoAndLog "${FUNCNAME}(): Installing web files..." |
---|
[7586ca3] | 758 | cp -ar $WORKDIR/opengnsys/admin/WebConsole/* $INSTALL_TARGET/www #*/ comentario para doxigen |
---|
| 759 | if [ $? != 0 ]; then |
---|
[dce072b] | 760 | errorAndLog "${FUNCNAME}(): Error copying web files." |
---|
[7586ca3] | 761 | exit 1 |
---|
| 762 | fi |
---|
| 763 | find $INSTALL_TARGET/www -name .svn -type d -exec rm -fr {} \; 2>/dev/null |
---|
[813f617] | 764 | # Descomprimir XAJAX. |
---|
[edac247] | 765 | unzip $WORKDIR/opengnsys/admin/xajax_0.5_standard.zip -d $INSTALL_TARGET/www/xajax |
---|
[7586ca3] | 766 | # Cambiar permisos para ficheros especiales. |
---|
[3aaf91d] | 767 | chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP $INSTALL_TARGET/www/images/iconos |
---|
[dce072b] | 768 | echoAndLog "${FUNCNAME}(): Web files installed successfully." |
---|
[7586ca3] | 769 | } |
---|
| 770 | |
---|
| 771 | # Configuración específica de Apache. |
---|
[892606b9] | 772 | function openGnsysInstallWebConsoleApacheConf() |
---|
[a01156a] | 773 | { |
---|
| 774 | if [ $# -ne 2 ]; then |
---|
[dce072b] | 775 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 776 | exit 1 |
---|
| 777 | fi |
---|
| 778 | |
---|
| 779 | local path_opengnsys_base=$1 |
---|
| 780 | local path_apache2_confd=$2 |
---|
[892606b9] | 781 | local path_web_console=${path_opengnsys_base}/www |
---|
[a01156a] | 782 | |
---|
[892606b9] | 783 | if [ ! -d $path_apache2_confd ]; then |
---|
[dce072b] | 784 | errorAndLog "${FUNCNAME}(): path to apache2 conf.d can not found, verify your server installation" |
---|
[892606b9] | 785 | return 1 |
---|
| 786 | fi |
---|
| 787 | |
---|
[7586ca3] | 788 | mkdir -p $path_apache2_confd/{sites-available,sites-enabled} |
---|
[892606b9] | 789 | |
---|
[dce072b] | 790 | echoAndLog "${FUNCNAME}(): creating apache2 config file.." |
---|
[a01156a] | 791 | |
---|
[d725a41] | 792 | |
---|
[a01156a] | 793 | # genera configuración |
---|
[892606b9] | 794 | cat > $path_opengnsys_base/etc/apache.conf <<EOF |
---|
[49c6891] | 795 | # OpenGnSys Web Console configuration for Apache |
---|
[a01156a] | 796 | |
---|
[892606b9] | 797 | Alias /opengnsys ${path_web_console} |
---|
[a01156a] | 798 | |
---|
[892606b9] | 799 | <Directory ${path_web_console}> |
---|
[a01156a] | 800 | Options -Indexes FollowSymLinks |
---|
| 801 | DirectoryIndex acceso.php |
---|
| 802 | </Directory> |
---|
| 803 | EOF |
---|
| 804 | |
---|
[7586ca3] | 805 | ln -fs $path_opengnsys_base/etc/apache.conf $path_apache2_confd/sites-available/opengnsys.conf |
---|
| 806 | ln -fs $path_apache2_confd/sites-available/opengnsys.conf $path_apache2_confd/sites-enabled/opengnsys.conf |
---|
[a01156a] | 807 | if [ $? -ne 0 ]; then |
---|
[dce072b] | 808 | errorAndLog "${FUNCNAME}(): config file can't be linked to apache conf, verify your server installation" |
---|
[a01156a] | 809 | return 1 |
---|
| 810 | else |
---|
[dce072b] | 811 | echoAndLog "${FUNCNAME}(): config file created and linked, restarting apache daemon" |
---|
[077dd7c5] | 812 | /etc/init.d/apache2 restart |
---|
[a01156a] | 813 | return 0 |
---|
| 814 | fi |
---|
| 815 | } |
---|
| 816 | |
---|
[8fc9552] | 817 | |
---|
[5d6bf97] | 818 | # Crear documentación Doxygen para la consola web. |
---|
| 819 | function makeDoxygenFiles() |
---|
| 820 | { |
---|
| 821 | echoAndLog "${FUNCNAME}(): Making Doxygen web files..." |
---|
| 822 | $WORKDIR/opengnsys/installer/ogGenerateDoc.sh \ |
---|
| 823 | $WORKDIR/opengnsys/client/engine $INSTALL_TARGET/www |
---|
| 824 | if [ ! -d "$INSTALL_TARGET/www/html" ]; then |
---|
| 825 | errorAndLog "${FUNCNAME}(): unable to create Doxygen web files." |
---|
[ead38fb] | 826 | return 1 |
---|
[5d6bf97] | 827 | fi |
---|
| 828 | mv "$INSTALL_TARGET/www/html" "$INSTALL_TARGET/www/api" |
---|
| 829 | chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP $INSTALL_TARGET/www/api |
---|
| 830 | echoAndLog "${FUNCNAME}(): Doxygen web files created successfully." |
---|
| 831 | } |
---|
| 832 | |
---|
| 833 | |
---|
[a01156a] | 834 | # Crea la estructura base de la instalación de opengnsys |
---|
[eb9424f] | 835 | function createDirs() |
---|
[a01156a] | 836 | { |
---|
| 837 | if [ $# -ne 1 ]; then |
---|
[dce072b] | 838 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 839 | exit 1 |
---|
| 840 | fi |
---|
| 841 | |
---|
[eb9424f] | 842 | local path_opengnsys_base="$1" |
---|
[a01156a] | 843 | |
---|
[eb9424f] | 844 | # Crear estructura de directorios. |
---|
[dce072b] | 845 | echoAndLog "${FUNCNAME}(): creating directory paths in $path_opengnsys_base" |
---|
[a01156a] | 846 | mkdir -p $path_opengnsys_base |
---|
| 847 | mkdir -p $path_opengnsys_base/bin |
---|
[5c33840] | 848 | mkdir -p $path_opengnsys_base/client |
---|
[49c6891] | 849 | mkdir -p $path_opengnsys_base/doc |
---|
[5c33840] | 850 | mkdir -p $path_opengnsys_base/etc |
---|
[a01156a] | 851 | mkdir -p $path_opengnsys_base/lib |
---|
[1cc5697] | 852 | mkdir -p $path_opengnsys_base/log/clients |
---|
[eb9424f] | 853 | ln -fs $path_opengnsys_base/log /var/log/opengnsys |
---|
[7586ca3] | 854 | mkdir -p $path_opengnsys_base/sbin |
---|
[a01156a] | 855 | mkdir -p $path_opengnsys_base/www |
---|
[5c33840] | 856 | mkdir -p $path_opengnsys_base/images |
---|
[b6906f7] | 857 | ln -fs /var/lib/tftpboot $path_opengnsys_base |
---|
[eb9424f] | 858 | mkdir -p $path_opengnsys_base/tftpboot/pxelinux.cfg |
---|
[a01156a] | 859 | if [ $? -ne 0 ]; then |
---|
[dce072b] | 860 | errorAndLog "${FUNCNAME}(): error while creating dirs. Do you have write permissions?" |
---|
[a01156a] | 861 | return 1 |
---|
| 862 | fi |
---|
| 863 | |
---|
[eb9424f] | 864 | # Crear usuario ficticio. |
---|
| 865 | if id -u $OPENGNSYS_CLIENT_USER &>/dev/null; then |
---|
| 866 | echoAndLog "${FUNCNAME}(): user \"$OPENGNSYS_CLIENT_USER\" is already created" |
---|
| 867 | else |
---|
| 868 | echoAndLog "${FUNCNAME}(): creating OpenGnSys user" |
---|
| 869 | useradd $OPENGNSYS_CLIENT_USER 2>/dev/null |
---|
| 870 | if [ $? -ne 0 ]; then |
---|
| 871 | errorAndLog "${FUNCNAME}(): error creating OpenGnSys user" |
---|
| 872 | return 1 |
---|
| 873 | fi |
---|
| 874 | fi |
---|
| 875 | |
---|
| 876 | # Establecer los permisos básicos. |
---|
| 877 | echoAndLog "${FUNCNAME}(): setting directory permissions" |
---|
| 878 | chmod -R 775 $path_opengnsys_base/{log/clients,images,tftpboot/pxelinux.cfg} |
---|
| 879 | chown -R :$OPENGNSYS_CLIENT_USER $path_opengnsys_base/{log/clients,images,tftpboot/pxelinux.cfg} |
---|
| 880 | if [ $? -ne 0 ]; then |
---|
| 881 | errorAndLog "${FUNCNAME}(): error while setting permissions" |
---|
| 882 | return 1 |
---|
| 883 | fi |
---|
| 884 | |
---|
[dce072b] | 885 | echoAndLog "${FUNCNAME}(): directory paths created" |
---|
[a01156a] | 886 | return 0 |
---|
| 887 | } |
---|
| 888 | |
---|
[463a1d49] | 889 | # Copia ficheros de configuración y ejecutables genéricos del servidor. |
---|
[e0edc14] | 890 | function openGnsysCopyServerFiles () |
---|
| 891 | { |
---|
[463a1d49] | 892 | if [ $# -ne 1 ]; then |
---|
[879689f] | 893 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[463a1d49] | 894 | exit 1 |
---|
| 895 | fi |
---|
| 896 | |
---|
[7caf5a7c] | 897 | local path_opengnsys_base="$1" |
---|
[463a1d49] | 898 | |
---|
[2338c95f] | 899 | local SOURCES=( server/tftpboot/pxelinux.cfg \ |
---|
[7caf5a7c] | 900 | server/bin \ |
---|
| 901 | repoman/bin \ |
---|
| 902 | installer/opengnsys_uninstall.sh \ |
---|
| 903 | installer/opengnsys_update.sh \ |
---|
| 904 | doc ) |
---|
[2338c95f] | 905 | local TARGETS=( tftpboot/pxelinux.cfg \ |
---|
[7caf5a7c] | 906 | bin \ |
---|
| 907 | bin \ |
---|
| 908 | lib \ |
---|
| 909 | lib \ |
---|
| 910 | doc ) |
---|
[463a1d49] | 911 | |
---|
| 912 | if [ ${#SOURCES[@]} != ${#TARGETS[@]} ]; then |
---|
[879689f] | 913 | errorAndLog "${FUNCNAME}(): inconsistent number of array items" |
---|
[463a1d49] | 914 | exit 1 |
---|
| 915 | fi |
---|
| 916 | |
---|
[879689f] | 917 | echoAndLog "${FUNCNAME}(): copying files to server directories" |
---|
[f2bb433] | 918 | |
---|
[8457092] | 919 | pushd $WORKDIR/opengnsys |
---|
[463a1d49] | 920 | local i |
---|
| 921 | for (( i = 0; i < ${#SOURCES[@]}; i++ )); do |
---|
| 922 | if [ -f "${SOURCES[$i]}" ]; then |
---|
[879689f] | 923 | echoAndLog "Copying ${SOURCES[$i]} to $path_opengnsys_base/${TARGETS[$i]}" |
---|
[b5aae72] | 924 | cp -a "${SOURCES[$i]}" "${path_opengnsys_base}/${TARGETS[$i]}" |
---|
[8457092] | 925 | elif [ -d "${SOURCES[$i]}" ]; then |
---|
[879689f] | 926 | echoAndLog "Copying content of ${SOURCES[$i]} to $path_opengnsys_base/${TARGETS[$i]}" |
---|
[8457092] | 927 | cp -a "${SOURCES[$i]}"/* "${path_opengnsys_base}/${TARGETS[$i]}" |
---|
| 928 | else |
---|
| 929 | echoAndLog "Warning: Unable to copy ${SOURCES[$i]} to $path_opengnsys_base/${TARGETS[$i]}" |
---|
[463a1d49] | 930 | fi |
---|
| 931 | done |
---|
[7586ca3] | 932 | popd |
---|
[892606b9] | 933 | } |
---|
| 934 | |
---|
[7586ca3] | 935 | #################################################################### |
---|
| 936 | ### Funciones de compilación de códifo fuente de servicios |
---|
| 937 | #################################################################### |
---|
| 938 | |
---|
[b6906f7] | 939 | # Compilar los servicios de OpenGNsys |
---|
[7586ca3] | 940 | function servicesCompilation () |
---|
| 941 | { |
---|
[13a01a7] | 942 | local hayErrores=0 |
---|
[0795938] | 943 | |
---|
[49c6891] | 944 | # Compilar OpenGnSys Server |
---|
| 945 | echoAndLog "${FUNCNAME}(): Compiling OpenGnSys Admin Server" |
---|
[7b61735] | 946 | pushd $WORKDIR/opengnsys/admin/Sources/Services/ogAdmServer |
---|
[b6906f7] | 947 | make && make install |
---|
[13a01a7] | 948 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 949 | echoAndLog "${FUNCNAME}(): error while compiling OpenGnSys Admin Server" |
---|
[13a01a7] | 950 | hayErrores=1 |
---|
| 951 | fi |
---|
[7586ca3] | 952 | popd |
---|
[49c6891] | 953 | # Compilar OpenGnSys Repository Manager |
---|
| 954 | echoAndLog "${FUNCNAME}(): Compiling OpenGnSys Repository Manager" |
---|
[7b61735] | 955 | pushd $WORKDIR/opengnsys/admin/Sources/Services/ogAdmRepo |
---|
[b6906f7] | 956 | make && make install |
---|
[13a01a7] | 957 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 958 | echoAndLog "${FUNCNAME}(): error while compiling OpenGnSys Repository Manager" |
---|
[13a01a7] | 959 | hayErrores=1 |
---|
| 960 | fi |
---|
[8125e7c] | 961 | popd |
---|
[4984660] | 962 | # Compilar OpenGnSys Agent |
---|
| 963 | echoAndLog "${FUNCNAME}(): Compiling OpenGnSys Agent" |
---|
[7b61735] | 964 | pushd $WORKDIR/opengnsys/admin/Sources/Services/ogAdmAgent |
---|
[4984660] | 965 | make && make install |
---|
| 966 | if [ $? -ne 0 ]; then |
---|
| 967 | echoAndLog "${FUNCNAME}(): error while compiling OpenGnSys Agent" |
---|
| 968 | hayErrores=1 |
---|
| 969 | fi |
---|
| 970 | popd |
---|
[49c6891] | 971 | # Compilar OpenGnSys Client |
---|
| 972 | echoAndLog "${FUNCNAME}(): Compiling OpenGnSys Admin Client" |
---|
[7b61735] | 973 | pushd $WORKDIR/opengnsys/admin/Sources/Clients/ogAdmClient |
---|
[2338c95f] | 974 | make && mv ogAdmClient ../../../../client/shared/bin |
---|
[13a01a7] | 975 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 976 | echoAndLog "${FUNCNAME}(): error while compiling OpenGnSys Admin Client" |
---|
[13a01a7] | 977 | hayErrores=1 |
---|
| 978 | fi |
---|
[318efac] | 979 | popd |
---|
[13a01a7] | 980 | |
---|
| 981 | return $hayErrores |
---|
[b6906f7] | 982 | } |
---|
| 983 | |
---|
[7b61735] | 984 | #################################################################### |
---|
| 985 | ### Funciones de copia de la Interface de administración |
---|
| 986 | #################################################################### |
---|
| 987 | |
---|
| 988 | # Copiar carpeta de Interface |
---|
[c1e00e4] | 989 | function copyInterfaceAdm () |
---|
[7b61735] | 990 | { |
---|
| 991 | local hayErrores=0 |
---|
| 992 | |
---|
[fbd9bcc] | 993 | # Crear carpeta y copiar Interface |
---|
[7b61735] | 994 | echoAndLog "${FUNCNAME}(): Copying Administration Interface Folder" |
---|
[fbd9bcc] | 995 | cp -ar $WORKDIR/opengnsys/admin/Interface $INSTALL_TARGET/client/interfaceAdm |
---|
[7b61735] | 996 | if [ $? -ne 0 ]; then |
---|
| 997 | echoAndLog "${FUNCNAME}(): error while copying Administration Interface Folder" |
---|
| 998 | hayErrores=1 |
---|
| 999 | fi |
---|
[b6f1726] | 1000 | chown $OPENGNSYS_CLIENT_USER:$OPENGNSYS_CLIENT_USER $INSTALL_TARGET/client/interfaceAdm/CambiarAcceso |
---|
[f6c1d2b] | 1001 | chmod 700 $INSTALL_TARGET/client/interfaceAdm/CambiarAcceso |
---|
[7b61735] | 1002 | |
---|
| 1003 | return $hayErrores |
---|
| 1004 | } |
---|
[b6906f7] | 1005 | |
---|
[892606b9] | 1006 | #################################################################### |
---|
| 1007 | ### Funciones instalacion cliente opengnsys |
---|
| 1008 | #################################################################### |
---|
| 1009 | |
---|
[7cc6687] | 1010 | function openGnsysCopyClientFiles() |
---|
[7586ca3] | 1011 | { |
---|
[a555f49] | 1012 | local hayErrores=0 |
---|
| 1013 | |
---|
[49c6891] | 1014 | echoAndLog "${FUNCNAME}(): Copying OpenGnSys Client files." |
---|
[d47d38d] | 1015 | cp -ar $WORKDIR/opengnsys/client/shared/* $INSTALL_TARGET/client |
---|
| 1016 | if [ $? -ne 0 ]; then |
---|
[9ef8920] | 1017 | errorAndLog "${FUNCNAME}(): error while copying client estructure" |
---|
| 1018 | hayErrores=1 |
---|
| 1019 | fi |
---|
[d47d38d] | 1020 | find $INSTALL_TARGET/client -name .svn -type d -exec rm -fr {} \; 2>/dev/null |
---|
[9ef8920] | 1021 | |
---|
[49c6891] | 1022 | echoAndLog "${FUNCNAME}(): Copying OpenGnSys Cloning Engine files." |
---|
[d47d38d] | 1023 | mkdir -p $INSTALL_TARGET/client/lib/engine/bin |
---|
| 1024 | cp -ar $WORKDIR/opengnsys/client/engine/*.lib $INSTALL_TARGET/client/lib/engine/bin |
---|
[a555f49] | 1025 | if [ $? -ne 0 ]; then |
---|
| 1026 | errorAndLog "${FUNCNAME}(): error while copying engine files" |
---|
| 1027 | hayErrores=1 |
---|
| 1028 | fi |
---|
[9ef8920] | 1029 | |
---|
| 1030 | if [ $hayErrores -eq 0 ]; then |
---|
| 1031 | echoAndLog "${FUNCNAME}(): client copy files success." |
---|
| 1032 | else |
---|
| 1033 | errorAndLog "${FUNCNAME}(): client copy files with errors" |
---|
| 1034 | fi |
---|
| 1035 | |
---|
| 1036 | return $hayErrores |
---|
| 1037 | } |
---|
| 1038 | |
---|
| 1039 | |
---|
| 1040 | |
---|
| 1041 | |
---|
| 1042 | # Crear antiguo cliente initrd para OpenGnSys 0.10 |
---|
| 1043 | function openGnsysOldClientCreate() |
---|
| 1044 | { |
---|
| 1045 | local OSCODENAME |
---|
| 1046 | |
---|
| 1047 | local hayErrores=0 |
---|
| 1048 | |
---|
[cc7eab7] | 1049 | # Cargar Kernel, Initrd y paquetes udeb para la distribución del servidor (o por defecto). |
---|
[28c96b3] | 1050 | OSCODENAME=$(lsb_release -cs 2>/dev/null) |
---|
[7586ca3] | 1051 | if [ "$OSDISTRIB" = "Ubuntu" -a -n "$OSCODENAME" ]; then |
---|
[a555f49] | 1052 | echoAndLog "${FUNCNAME}(): Loading Kernel and Initrd files for $OSDISTRIB $OSCODENAME." |
---|
[da8db11] | 1053 | $INSTALL_TARGET/bin/initrd-generator -t $INSTALL_TARGET/tftpboot -v $OSCODENAME 2>&1 | tee -a $LOG_FILE |
---|
[a555f49] | 1054 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 1055 | errorAndLog "${FUNCNAME}(): error while generating initrd OpenGnSys Admin Client" |
---|
[a555f49] | 1056 | hayErrores=1 |
---|
| 1057 | fi |
---|
| 1058 | echoAndLog "${FUNCNAME}(): Loading udeb files for $OSDISTRIB $OSCODENAME." |
---|
[da8db11] | 1059 | $INSTALL_TARGET/bin/upgrade-clients-udeb.sh $OSCODENAME 2>&1 | tee -a $LOG_FILE |
---|
[a555f49] | 1060 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 1061 | errorAndLog "${FUNCNAME}(): error while upgrading udeb files OpenGnSys Admin Client" |
---|
[a555f49] | 1062 | hayErrores=1 |
---|
| 1063 | fi |
---|
[7586ca3] | 1064 | else |
---|
[a555f49] | 1065 | echoAndLog "${FUNCNAME}(): Loading default Kernel and Initrd files." |
---|
[da8db11] | 1066 | $INSTALL_TARGET/bin/initrd-generator -t $INSTALL_TARGET/tftpboot 2>&1 | tee -a $LOG_FILE |
---|
[a555f49] | 1067 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 1068 | errorAndLog "${FUNCNAME}(): error while generating initrd OpenGnSys Admin Client" |
---|
[a555f49] | 1069 | hayErrores=1 |
---|
| 1070 | fi |
---|
| 1071 | echoAndLog "${FUNCNAME}(): Loading default udeb files." |
---|
[da8db11] | 1072 | $INSTALL_TARGET/bin/upgrade-clients-udeb.sh 2>&1 | tee -a $LOG_FILE |
---|
[a555f49] | 1073 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 1074 | errorAndLog "${FUNCNAME}(): error while upgrading udeb files OpenGnSys Admin Client" |
---|
[a555f49] | 1075 | hayErrores=1 |
---|
| 1076 | fi |
---|
| 1077 | fi |
---|
| 1078 | |
---|
| 1079 | if [ $hayErrores -eq 0 ]; then |
---|
[813f617] | 1080 | echoAndLog "${FUNCNAME}(): Old client generation success." |
---|
[a555f49] | 1081 | else |
---|
[813f617] | 1082 | errorAndLog "${FUNCNAME}(): Old client generation with errors" |
---|
[7586ca3] | 1083 | fi |
---|
[a555f49] | 1084 | |
---|
| 1085 | return $hayErrores |
---|
[463a1d49] | 1086 | } |
---|
| 1087 | |
---|
| 1088 | |
---|
[813f617] | 1089 | # Crear nuevo cliente OpenGnSys 1.0 |
---|
| 1090 | function openGnsysClientCreate() |
---|
| 1091 | { |
---|
| 1092 | local DOWNLOADURL=http://www.opengnsys.es/downloads |
---|
[e9722d2] | 1093 | local FILENAME=ogclient-1.0.1-lucid-32bit.tar.gz |
---|
[6ef9f23] | 1094 | local TMPFILE=/tmp/$FILENAME |
---|
[813f617] | 1095 | |
---|
| 1096 | echoAndLog "${FUNCNAME}(): Loading Client" |
---|
| 1097 | # Descargar y descomprimir cliente ogclient |
---|
[6ef9f23] | 1098 | wget $DOWNLOADURL/$FILENAME -O $TMPFILE |
---|
| 1099 | if [ ! -s $TMPFILE ]; then |
---|
| 1100 | errorAndLog "${FUNCNAME}(): Error loading OpenGnSys Client" |
---|
[813f617] | 1101 | return 1 |
---|
| 1102 | fi |
---|
| 1103 | echoAndLog "${FUNCNAME}(): Extranting Client files" |
---|
[6ef9f23] | 1104 | tar xzvf $TMPFILE -C $INSTALL_TARGET/tftpboot |
---|
| 1105 | rm -f $TMPFILE |
---|
[813f617] | 1106 | # Usar la versión más reciente del Kernel y del Initrd para el cliente. |
---|
[e0edc14] | 1107 | ln -f $(ls $INSTALL_TARGET/tftpboot/ogclient/vmlinuz-*|tail -1) $INSTALL_TARGET/tftpboot/ogclient/ogvmlinuz |
---|
| 1108 | ln -f $(ls $INSTALL_TARGET/tftpboot/ogclient/initrd.img-*|tail -1) $INSTALL_TARGET/tftpboot/ogclient/oginitrd.img |
---|
[813f617] | 1109 | # Establecer los permisos. |
---|
| 1110 | chmod -R 755 $INSTALL_TARGET/tftpboot/ogclient |
---|
| 1111 | chown -R :$OPENGNSYS_CLIENT_USER $INSTALL_TARGET/tftpboot/ogclient |
---|
| 1112 | echoAndLog "${FUNCNAME}(): Client generation success" |
---|
| 1113 | } |
---|
| 1114 | |
---|
| 1115 | |
---|
[49c6891] | 1116 | # Configuración básica de servicios de OpenGnSys |
---|
[cc7eab7] | 1117 | function openGnsysConfigure() |
---|
| 1118 | { |
---|
[9ee62ad] | 1119 | echoAndLog "${FUNCNAME}(): Copying init files." |
---|
[7b61735] | 1120 | cp -p $WORKDIR/opengnsys/admin/Sources/Services/opengnsys.init /etc/init.d/opengnsys |
---|
| 1121 | cp -p $WORKDIR/opengnsys/admin/Sources/Services/opengnsys.default /etc/default/opengnsys |
---|
[8fc9552] | 1122 | cp -p $WORKDIR/opengnsys/admin/Sources/Services/ogAdmRepoAux /opt/opengnsys/sbin/ |
---|
[cc7eab7] | 1123 | update-rc.d opengnsys defaults |
---|
[9ee62ad] | 1124 | echoAndLog "${FUNCNAME}(): Creating cron files." |
---|
| 1125 | echo "* * * * * root [ -x $INSTALL_TARGET/bin/torrent-creator ] && $INSTALL_TARGET/bin/torrent-creator" > /etc/cron.d/torrentcreator |
---|
[8fc9552] | 1126 | echo "5 * * * * root [ -x $INSTALL_TARGET/bin/torrent-tracker ] && $INSTALL_TARGET/bin/torrent-tracker" > /etc/cron.d/torrenttracker |
---|
[9ee62ad] | 1127 | echoAndLog "${FUNCNAME}(): Creating OpenGnSys config file in \"$INSTALL_TARGET/etc\"." |
---|
[bf41d13] | 1128 | perl -pi -e "s/SERVERIP/$SERVERIP/g; s/DBUSER/$OPENGNSYS_DB_USER/g; s/DBPASSWORD/$OPENGNSYS_DB_PASSWD/g; s/DATABASE/$OPENGNSYS_DATABASE/g" $INSTALL_TARGET/etc/ogAdmServer.cfg |
---|
[1a22cd2] | 1129 | perl -pi -e "s/SERVERIP/$SERVERIP/g" $INSTALL_TARGET/etc/ogAdmRepo.cfg |
---|
[4a3cd1f] | 1130 | perl -pi -e "s/SERVERIP/$SERVERIP/g; s/DBUSER/$OPENGNSYS_DB_USER/g; s/DBPASSWORD/$OPENGNSYS_DB_PASSWD/g; s/DATABASE/$OPENGNSYS_DATABASE/g" $INSTALL_TARGET/etc/ogAdmAgent.cfg |
---|
[9de73019] | 1131 | chown root:root $INSTALL_TARGET/etc/{ogAdmServer.cfg,ogAdmAgent.cfg} |
---|
| 1132 | chmod 600 $INSTALL_TARGET/etc/{ogAdmServer.cfg,ogAdmAgent.cfg} |
---|
[ea7186c] | 1133 | echoAndLog "${FUNCNAME}(): Creating Web Console config file" |
---|
| 1134 | OPENGNSYS_CONSOLEURL="http://$SERVERIP/opengnsys" |
---|
[bf41d13] | 1135 | perl -pi -e "s/SERVERIP/$SERVERIP/g; s/DBUSER/$OPENGNSYS_DB_USER/g; s/DBPASSWORD/$OPENGNSYS_DB_PASSWD/g; s/DATABASE/$OPENGNSYS_DATABASE/g; s/OPENGNSYSURL/${OPENGNSYS_CONSOLEURL//\//\\/}/g" $INSTALL_TARGET/www/controlacceso.php |
---|
[9de73019] | 1136 | chown $APACHE_RUN_USER:$APACHE_RUN_GROUP $INSTALL_TARGET/www/controlacceso.php |
---|
| 1137 | chmod 600 $INSTALL_TARGET/www/controlacceso.php |
---|
[7b61735] | 1138 | sed -e "s/SERVERIP/$SERVERIP/g" -e "s/OPENGNSYSURL/${OPENGNSYS_CONSOLEURL//\//\\/}/g" $WORKDIR/opengnsys/admin/Sources/Clients/ogAdmClient/ogAdmClient.cfg > $INSTALL_TARGET/client/etc/ogAdmClient.cfg |
---|
[9ee62ad] | 1139 | echoAndLog "${FUNCNAME}(): Starting OpenGnSys services." |
---|
[cc7eab7] | 1140 | /etc/init.d/opengnsys start |
---|
| 1141 | } |
---|
| 1142 | |
---|
[b6906f7] | 1143 | |
---|
[a01156a] | 1144 | ##################################################################### |
---|
[180a07dd] | 1145 | ####### Función de resumen informativo de la instalación |
---|
| 1146 | ##################################################################### |
---|
| 1147 | |
---|
[813f617] | 1148 | function installationSummary() |
---|
| 1149 | { |
---|
[eb9424f] | 1150 | # Crear fichero de versión y revisión, si no existe. |
---|
| 1151 | local VERSIONFILE="$INSTALL_TARGET/doc/VERSION.txt" |
---|
| 1152 | local REVISION=$(LANG=C svn info $SVN_URL|awk '/Revision:/ {print "r"$2}') |
---|
| 1153 | [ -f $VERSIONFILE ] || echo "OpenGnSys" >$VERSIONFILE |
---|
| 1154 | perl -pi -e "s/($| r[0-9]*)/ $REVISION/" $VERSIONFILE |
---|
| 1155 | |
---|
| 1156 | # Mostrar información. |
---|
[180a07dd] | 1157 | echo |
---|
[49c6891] | 1158 | echoAndLog "OpenGnSys Installation Summary" |
---|
[180a07dd] | 1159 | echo "==============================" |
---|
[eb9424f] | 1160 | echoAndLog "Project version: $(cat $VERSIONFILE 2>/dev/null)" |
---|
[49c6891] | 1161 | echoAndLog "Installation directory: $INSTALL_TARGET" |
---|
| 1162 | echoAndLog "Repository directory: $INSTALL_TARGET/images" |
---|
[d47d38d] | 1163 | echoAndLog "DHCP configuration file: /etc/dhcp3/dhcpd.conf" |
---|
| 1164 | echoAndLog "TFTP configuration directory: /var/lib/tftpboot" |
---|
| 1165 | echoAndLog "Samba configuration directory: /etc/samba" |
---|
[49c6891] | 1166 | echoAndLog "Web Console URL: $OPENGNSYS_CONSOLEURL" |
---|
[180a07dd] | 1167 | echoAndLog "Web Console admin user: $OPENGNSYS_DB_USER" |
---|
| 1168 | echoAndLog "Web Console admin password: $OPENGNSYS_DB_PASSWD" |
---|
| 1169 | echo |
---|
| 1170 | echoAndLog "Post-Installation Instructions:" |
---|
| 1171 | echo "===============================" |
---|
| 1172 | echoAndLog "Review or edit all configuration files." |
---|
[c5ce04c] | 1173 | echoAndLog "Insert DHCP configuration data and restart service." |
---|
[180a07dd] | 1174 | echoAndLog "Log-in as Web Console admin user." |
---|
[85fa51e] | 1175 | echoAndLog " - Review default Organization data and assign default user." |
---|
[180a07dd] | 1176 | echoAndLog "Log-in as Web Console organization user." |
---|
[85fa51e] | 1177 | echoAndLog " - Insert OpenGnSys data (rooms, computers, menus, etc)." |
---|
[180a07dd] | 1178 | echo |
---|
| 1179 | } |
---|
| 1180 | |
---|
| 1181 | |
---|
| 1182 | |
---|
| 1183 | ##################################################################### |
---|
[49c6891] | 1184 | ####### Proceso de instalación de OpenGnSys |
---|
[a01156a] | 1185 | ##################################################################### |
---|
| 1186 | |
---|
[49c6891] | 1187 | echoAndLog "OpenGnSys installation begins at $(date)" |
---|
[6090a2d] | 1188 | pushd $WORKDIR |
---|
[cc7eab7] | 1189 | |
---|
[07c3a59] | 1190 | # Comprobar si hay conexión y detectar parámetros de red por defecto. |
---|
| 1191 | checkNetworkConnection |
---|
| 1192 | if [ $? -ne 0 ]; then |
---|
| 1193 | errorAndLog "Error connecting to server. Causes:" |
---|
| 1194 | errorAndLog " - Network is unreachable, review devices parameters." |
---|
| 1195 | errorAndLog " - You are inside a private network, configure the proxy service." |
---|
| 1196 | errorAndLog " - Server is temporally down, try agian later." |
---|
| 1197 | exit 1 |
---|
| 1198 | fi |
---|
[7586ca3] | 1199 | getNetworkSettings |
---|
| 1200 | if [ $? -ne 0 ]; then |
---|
| 1201 | errorAndLog "Error reading default network settings." |
---|
| 1202 | exit 1 |
---|
| 1203 | fi |
---|
| 1204 | |
---|
[e0edc14] | 1205 | # Detener servicios de OpenGnSys, si están activos previamente. |
---|
| 1206 | [ -f /etc/init.d/opengnsys ] && /etc/init.d/opengnsys stop |
---|
| 1207 | |
---|
[318efac] | 1208 | # Actualizar repositorios |
---|
| 1209 | apt-get update |
---|
| 1210 | |
---|
[b6906f7] | 1211 | # Instalación de dependencias (paquetes de sistema operativo). |
---|
[a01156a] | 1212 | declare -a notinstalled |
---|
| 1213 | checkDependencies DEPENDENCIES notinstalled |
---|
| 1214 | if [ $? -ne 0 ]; then |
---|
| 1215 | installDependencies notinstalled |
---|
| 1216 | if [ $? -ne 0 ]; then |
---|
| 1217 | echoAndLog "Error while installing some dependeces, please verify your server installation before continue" |
---|
| 1218 | exit 1 |
---|
| 1219 | fi |
---|
| 1220 | fi |
---|
| 1221 | |
---|
[49c6891] | 1222 | # Arbol de directorios de OpenGnSys. |
---|
[eb9424f] | 1223 | createDirs ${INSTALL_TARGET} |
---|
[a01156a] | 1224 | if [ $? -ne 0 ]; then |
---|
| 1225 | errorAndLog "Error while creating directory paths!" |
---|
| 1226 | exit 1 |
---|
| 1227 | fi |
---|
[b6906f7] | 1228 | |
---|
[1e7eaab] | 1229 | # Si es necesario, descarga el repositorio de código en directorio temporal |
---|
[49c6891] | 1230 | if [ $USESVN -eq 1 ]; then |
---|
[1e7eaab] | 1231 | svnExportCode $SVN_URL |
---|
| 1232 | if [ $? -ne 0 ]; then |
---|
| 1233 | errorAndLog "Error while getting code from svn" |
---|
| 1234 | exit 1 |
---|
| 1235 | fi |
---|
| 1236 | else |
---|
| 1237 | ln -fs "$(dirname $PROGRAMDIR)" opengnsys |
---|
[a01156a] | 1238 | fi |
---|
| 1239 | |
---|
[49c6891] | 1240 | # Compilar código fuente de los servicios de OpenGnSys. |
---|
[b6906f7] | 1241 | servicesCompilation |
---|
[13a01a7] | 1242 | if [ $? -ne 0 ]; then |
---|
| 1243 | errorAndLog "Error while compiling OpenGnsys services" |
---|
| 1244 | exit 1 |
---|
| 1245 | fi |
---|
[b6906f7] | 1246 | |
---|
[7b61735] | 1247 | # Copiar carpeta Interface entre administración y motor de clonación. |
---|
[c1e00e4] | 1248 | copyInterfaceAdm |
---|
[7b61735] | 1249 | if [ $? -ne 0 ]; then |
---|
[c1e00e4] | 1250 | errorAndLog "Error while copying Administration Interface" |
---|
[7b61735] | 1251 | exit 1 |
---|
| 1252 | fi |
---|
| 1253 | |
---|
[b6906f7] | 1254 | # Configurando tftp |
---|
[318efac] | 1255 | tftpConfigure |
---|
[b6906f7] | 1256 | |
---|
| 1257 | # Configuración NFS |
---|
[d47d38d] | 1258 | #### (descomentar las siguientes líneas para exportar servicios por NFS) |
---|
| 1259 | #nfsConfigure |
---|
| 1260 | #if [ $? -ne 0 ]; then |
---|
| 1261 | # errorAndLog "Error while configuring nfs server!" |
---|
| 1262 | # exit 1 |
---|
| 1263 | #fi |
---|
[b6906f7] | 1264 | |
---|
[c1e00e4] | 1265 | # Configuración Samba |
---|
[8fc9552] | 1266 | smbConfigure |
---|
| 1267 | if [ $? -ne 0 ]; then |
---|
[c1e00e4] | 1268 | errorAndLog "Error while configuring Samba server!" |
---|
[8fc9552] | 1269 | exit 1 |
---|
| 1270 | fi |
---|
| 1271 | |
---|
[b6906f7] | 1272 | # Configuración ejemplo DHCP |
---|
| 1273 | dhcpConfigure |
---|
[a555f49] | 1274 | if [ $? -ne 0 ]; then |
---|
| 1275 | errorAndLog "Error while copying your dhcp server files!" |
---|
| 1276 | exit 1 |
---|
| 1277 | fi |
---|
[b6906f7] | 1278 | |
---|
[49c6891] | 1279 | # Copiar ficheros de servicios OpenGnSys Server. |
---|
[463a1d49] | 1280 | openGnsysCopyServerFiles ${INSTALL_TARGET} |
---|
| 1281 | if [ $? -ne 0 ]; then |
---|
| 1282 | errorAndLog "Error while copying the server files!" |
---|
| 1283 | exit 1 |
---|
| 1284 | fi |
---|
| 1285 | |
---|
[49c6891] | 1286 | # Instalar Base de datos de OpenGnSys Admin. |
---|
[b6906f7] | 1287 | isInArray notinstalled "mysql-server" |
---|
| 1288 | if [ $? -eq 0 ]; then |
---|
| 1289 | mysqlSetRootPassword ${MYSQL_ROOT_PASSWORD} |
---|
| 1290 | else |
---|
| 1291 | mysqlGetRootPassword |
---|
| 1292 | fi |
---|
[463a1d49] | 1293 | |
---|
[a01156a] | 1294 | mysqlTestConnection ${MYSQL_ROOT_PASSWORD} |
---|
| 1295 | if [ $? -ne 0 ]; then |
---|
| 1296 | errorAndLog "Error while connection to mysql" |
---|
| 1297 | exit 1 |
---|
| 1298 | fi |
---|
[892606b9] | 1299 | mysqlDbExists ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1300 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1301 | echoAndLog "Creating Web Console database" |
---|
[892606b9] | 1302 | mysqlCreateDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1303 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1304 | errorAndLog "Error while creating Web Console database" |
---|
[a01156a] | 1305 | exit 1 |
---|
| 1306 | fi |
---|
| 1307 | else |
---|
[cc7eab7] | 1308 | echoAndLog "Web Console database exists, ommiting creation" |
---|
[a01156a] | 1309 | fi |
---|
| 1310 | |
---|
[892606b9] | 1311 | mysqlCheckUserExists ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DB_USER} |
---|
[a01156a] | 1312 | if [ $? -ne 0 ]; then |
---|
| 1313 | echoAndLog "Creating user in database" |
---|
[892606b9] | 1314 | mysqlCreateAdminUserToDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} ${OPENGNSYS_DB_USER} "${OPENGNSYS_DB_PASSWD}" |
---|
[a01156a] | 1315 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1316 | errorAndLog "Error while creating database user" |
---|
[a01156a] | 1317 | exit 1 |
---|
| 1318 | fi |
---|
| 1319 | |
---|
| 1320 | fi |
---|
| 1321 | |
---|
[892606b9] | 1322 | mysqlCheckDbIsEmpty ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1323 | if [ $? -eq 0 ]; then |
---|
| 1324 | echoAndLog "Creating tables..." |
---|
[892606b9] | 1325 | if [ -f $WORKDIR/$OPENGNSYS_DB_CREATION_FILE ]; then |
---|
| 1326 | mysqlImportSqlFileToDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} $WORKDIR/$OPENGNSYS_DB_CREATION_FILE |
---|
[a01156a] | 1327 | else |
---|
[892606b9] | 1328 | errorAndLog "Unable to locate $WORKDIR/$OPENGNSYS_DB_CREATION_FILE!!" |
---|
[a01156a] | 1329 | exit 1 |
---|
| 1330 | fi |
---|
[bc7dfe7] | 1331 | else |
---|
| 1332 | # Si existe fichero ogBDAdmin-VersLocal-VersRepo.sql; aplicar cambios. |
---|
| 1333 | INSTVERSION=$(awk '{print $2}' $INSTALL_TARGET/doc/VERSION.txt) |
---|
| 1334 | REPOVERSION=$(awk '{print $2}' $WORKDIR/opengnsys/doc/VERSION.txt) |
---|
[295b4ab] | 1335 | OPENGNSYS_DB_UPDATE_FILE="opengnsys/admin/Database/$OPENGNSYS_DATABASE-$INSTVERSION-$REPOVERSION.sql" |
---|
| 1336 | if [ -f $WORKDIR/$OPENGNSYS_DB_UPDATE_FILE ]; then |
---|
[bc7dfe7] | 1337 | echoAndLog "Updating tables from version $INSTVERSION to $REPOVERSION" |
---|
[295b4ab] | 1338 | mysqlImportSqlFileToDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} $WORKDIR/$OPENGNSYS_DB_UPDATE_FILE |
---|
[bc7dfe7] | 1339 | else |
---|
| 1340 | echoAndLog "Database unchanged." |
---|
| 1341 | fi |
---|
[a01156a] | 1342 | fi |
---|
| 1343 | |
---|
| 1344 | # copiando paqinas web |
---|
[7586ca3] | 1345 | installWebFiles |
---|
[5d6bf97] | 1346 | # Generar páqinas web de documentación de la API |
---|
| 1347 | makeDoxygenFiles |
---|
[a01156a] | 1348 | |
---|
| 1349 | # creando configuracion de apache2 |
---|
[892606b9] | 1350 | openGnsysInstallWebConsoleApacheConf $INSTALL_TARGET /etc/apache2 |
---|
[a01156a] | 1351 | if [ $? -ne 0 ]; then |
---|
[49c6891] | 1352 | errorAndLog "Error configuring Apache for OpenGnSYS Admin" |
---|
[a01156a] | 1353 | exit 1 |
---|
| 1354 | fi |
---|
| 1355 | |
---|
| 1356 | popd |
---|
[892606b9] | 1357 | |
---|
[9ef8920] | 1358 | |
---|
| 1359 | # Crear la estructura de los accesos al servidor desde el cliente (shared) |
---|
[7cc6687] | 1360 | openGnsysCopyClientFiles |
---|
[9ef8920] | 1361 | if [ $? -ne 0 ]; then |
---|
| 1362 | errorAndLog "Error creating client structure" |
---|
| 1363 | fi |
---|
| 1364 | |
---|
[813f617] | 1365 | # Crear la estructura del antiguo cliente initrd de OpenGnSys 0.10 |
---|
[d47d38d] | 1366 | #### (descomentar las siguientes líneas para generar cliente initrd) |
---|
[2338c95f] | 1367 | #openGnsysOldClientCreate |
---|
| 1368 | #if [ $? -ne 0 ]; then |
---|
| 1369 | # errorAndLog "Warning: cannot create old initrd client" |
---|
| 1370 | #fi |
---|
[9ef8920] | 1371 | |
---|
[813f617] | 1372 | # Crear la estructura del cliente de OpenGnSys 1.0 |
---|
[892606b9] | 1373 | openGnsysClientCreate |
---|
[a555f49] | 1374 | if [ $? -ne 0 ]; then |
---|
[813f617] | 1375 | errorAndLog "Error creating client" |
---|
[a555f49] | 1376 | exit 1 |
---|
| 1377 | fi |
---|
[892606b9] | 1378 | |
---|
[65245d1] | 1379 | # Configuración de servicios de OpenGnSys |
---|
| 1380 | openGnsysConfigure |
---|
| 1381 | |
---|
[180a07dd] | 1382 | # Mostrar sumario de la instalación e instrucciones de post-instalación. |
---|
| 1383 | installationSummary |
---|
| 1384 | |
---|
[077dd7c5] | 1385 | #rm -rf $WORKDIR |
---|
[49c6891] | 1386 | echoAndLog "OpenGnSys installation finished at $(date)" |
---|
[2308fc7] | 1387 | |
---|