[a01156a] | 1 | #!/bin/bash |
---|
| 2 | |
---|
| 3 | ##################################################################### |
---|
| 4 | ####### Script instalador OpenGnsys |
---|
| 5 | ####### autor: Luis Guillén <lguillen@unizar.es> |
---|
| 6 | ##################################################################### |
---|
| 7 | |
---|
| 8 | |
---|
| 9 | WORKDIR=/tmp/opengnsys_installer |
---|
[13a01a7] | 10 | LOG_FILE=/tmp/opengnsys_installation.log |
---|
[a01156a] | 11 | |
---|
| 12 | # Array con las dependencias |
---|
[13a01a7] | 13 | DEPENDENCIES=( subversion apache2 php5 mysql-server php5-mysql nfs-kernel-server dhcp3-server udpcast bittorrent tftp-hpa tftpd-hpa syslinux openbsd-inetd update-inetd build-essential libmysqlclient15-dev wget ) |
---|
[a01156a] | 14 | |
---|
| 15 | INSTALL_TARGET=/opt/opengnsys |
---|
| 16 | |
---|
[892606b9] | 17 | MYSQL_ROOT_PASSWORD="passwordroot" |
---|
| 18 | |
---|
[a01156a] | 19 | # conexión al svn |
---|
[1b92629] | 20 | SVN_URL=svn://www.informatica.us.es:3690/opengnsys/trunk |
---|
[a01156a] | 21 | |
---|
| 22 | # Datos de base de datos |
---|
[892606b9] | 23 | OPENGNSYS_DATABASE=ogBDAdmin |
---|
| 24 | OPENGNSYS_DB_USER=usuog |
---|
| 25 | OPENGNSYS_DB_PASSWD=passusuog |
---|
| 26 | OPENGNSYS_DB_CREATION_FILE=opengnsys/admin/Database/ogBDAdmin.sql |
---|
| 27 | |
---|
| 28 | USUARIO=`whoami` |
---|
[a01156a] | 29 | |
---|
[892606b9] | 30 | if [ $USUARIO != 'root' ] |
---|
[a01156a] | 31 | then |
---|
| 32 | echo "ERROR: this program must run under root privileges!!" |
---|
| 33 | exit 1 |
---|
| 34 | fi |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | mkdir -p $WORKDIR |
---|
[892606b9] | 38 | pushd $WORKDIR |
---|
[a01156a] | 39 | |
---|
| 40 | ##################################################################### |
---|
| 41 | ####### Algunas funciones útiles de propósito general: |
---|
| 42 | ##################################################################### |
---|
[13a01a7] | 43 | function getDateTime() |
---|
[a01156a] | 44 | { |
---|
| 45 | echo `date +%Y%m%d-%H%M%S` |
---|
| 46 | } |
---|
| 47 | |
---|
| 48 | # Escribe a fichero y muestra por pantalla |
---|
[13a01a7] | 49 | function echoAndLog() |
---|
[a01156a] | 50 | { |
---|
| 51 | echo $1 |
---|
| 52 | FECHAHORA=`getDateTime` |
---|
| 53 | echo "$FECHAHORA;$SSH_CLIENT;$1" >> $LOG_FILE |
---|
| 54 | } |
---|
| 55 | |
---|
[13a01a7] | 56 | function errorAndLog() |
---|
[a01156a] | 57 | { |
---|
| 58 | echo "ERROR: $1" |
---|
| 59 | FECHAHORA=`getDateTime` |
---|
| 60 | echo "$FECHAHORA;$SSH_CLIENT;ERROR: $1" >> $LOG_FILE |
---|
| 61 | } |
---|
| 62 | |
---|
| 63 | # comprueba si el elemento pasado en $2 esta en el array $1 |
---|
[13a01a7] | 64 | function isInArray() |
---|
[a01156a] | 65 | { |
---|
| 66 | if [ $# -ne 2 ]; then |
---|
[13a01a7] | 67 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 68 | exit 1 |
---|
| 69 | fi |
---|
| 70 | |
---|
[13a01a7] | 71 | echoAndLog "${FUNCNAME}(): checking if $2 is in $1" |
---|
[a01156a] | 72 | local deps |
---|
[5c33840] | 73 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 74 | elemento=$2 |
---|
| 75 | |
---|
| 76 | local is_in_array=1 |
---|
| 77 | # copia local del array del parametro 1 |
---|
| 78 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 79 | do |
---|
| 80 | if [ "${deps[$i]}" = "${elemento}" ]; then |
---|
| 81 | echoAndLog "isInArray(): $elemento found in array" |
---|
| 82 | is_in_array=0 |
---|
| 83 | fi |
---|
| 84 | done |
---|
| 85 | |
---|
| 86 | if [ $is_in_array -ne 0 ]; then |
---|
[13a01a7] | 87 | echoAndLog "${FUNCNAME}(): $elemento NOT found in array" |
---|
[a01156a] | 88 | fi |
---|
| 89 | |
---|
| 90 | return $is_in_array |
---|
| 91 | |
---|
| 92 | } |
---|
| 93 | |
---|
| 94 | ##################################################################### |
---|
| 95 | ####### Funciones de manejo de paquetes Debian |
---|
| 96 | ##################################################################### |
---|
| 97 | |
---|
[13a01a7] | 98 | function checkPackage() |
---|
[a01156a] | 99 | { |
---|
| 100 | package=$1 |
---|
| 101 | if [ -z $package ]; then |
---|
| 102 | errorAndLog "checkPackage(): parameter required" |
---|
| 103 | exit 1 |
---|
| 104 | fi |
---|
| 105 | echoAndLog "checkPackage(): checking if package $package exists" |
---|
| 106 | dpkg -L $package &>/dev/null |
---|
| 107 | if [ $? -eq 0 ]; then |
---|
| 108 | echoAndLog "checkPackage(): package $package exists" |
---|
| 109 | return 0 |
---|
| 110 | else |
---|
| 111 | echoAndLog "checkPackage(): package $package doesn't exists" |
---|
| 112 | return 1 |
---|
| 113 | fi |
---|
| 114 | } |
---|
| 115 | |
---|
| 116 | # recibe array con dependencias |
---|
| 117 | # por referencia deja un array con las dependencias no resueltas |
---|
| 118 | # devuelve 1 si hay alguna dependencia no resuelta |
---|
[13a01a7] | 119 | function checkDependencies() |
---|
[a01156a] | 120 | { |
---|
| 121 | if [ $# -ne 2 ]; then |
---|
| 122 | errorAndLog "checkDependencies(): invalid number of parameters" |
---|
| 123 | exit 1 |
---|
| 124 | fi |
---|
| 125 | |
---|
| 126 | echoAndLog "checkDependencies(): checking dependences" |
---|
| 127 | uncompletedeps=0 |
---|
| 128 | |
---|
| 129 | # copia local del array del parametro 1 |
---|
| 130 | local deps |
---|
[5c33840] | 131 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 132 | |
---|
| 133 | declare -a local_notinstalled |
---|
[5c33840] | 134 | |
---|
[a01156a] | 135 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 136 | do |
---|
| 137 | checkPackage ${deps[$i]} |
---|
| 138 | if [ $? -ne 0 ]; then |
---|
| 139 | local_notinstalled[$uncompletedeps]=$package |
---|
| 140 | let uncompletedeps=uncompletedeps+1 |
---|
| 141 | fi |
---|
| 142 | done |
---|
| 143 | |
---|
| 144 | # relleno el array especificado en $2 por referencia |
---|
| 145 | for (( i = 0 ; i < ${#local_notinstalled[@]} ; i++ )) |
---|
| 146 | do |
---|
| 147 | eval "${2}[$i]=${local_notinstalled[$i]}" |
---|
| 148 | done |
---|
| 149 | |
---|
| 150 | # retorna el numero de paquetes no resueltos |
---|
| 151 | echoAndLog "checkDependencies(): dependencies uncompleted: $uncompletedeps" |
---|
| 152 | return $uncompletedeps |
---|
| 153 | } |
---|
| 154 | |
---|
| 155 | # Recibe un array con las dependencias y lo instala |
---|
[13a01a7] | 156 | function installDependencies() |
---|
[a01156a] | 157 | { |
---|
| 158 | if [ $# -ne 1 ]; then |
---|
| 159 | errorAndLog "installDependencies(): invalid number of parameters" |
---|
| 160 | exit 1 |
---|
| 161 | fi |
---|
| 162 | echoAndLog "installDependencies(): installing uncompleted dependencies" |
---|
| 163 | |
---|
| 164 | # copia local del array del parametro 1 |
---|
| 165 | local deps |
---|
[5c33840] | 166 | eval "deps=( \"\${$1[@]}\" )" |
---|
[a01156a] | 167 | |
---|
| 168 | local string_deps="" |
---|
| 169 | for (( i = 0 ; i < ${#deps[@]} ; i++ )) |
---|
| 170 | do |
---|
| 171 | string_deps="$string_deps ${deps[$i]}" |
---|
| 172 | done |
---|
| 173 | |
---|
| 174 | if [ -z "${string_deps}" ]; then |
---|
| 175 | errorAndLog "installDependencies(): array of dependeces is empty" |
---|
| 176 | exit 1 |
---|
| 177 | fi |
---|
| 178 | |
---|
| 179 | OLD_DEBIAN_FRONTEND=$DEBIAN_FRONTEND |
---|
| 180 | export DEBIAN_FRONTEND=noninteractive |
---|
| 181 | |
---|
| 182 | echoAndLog "installDependencies(): now ${string_deps} will be installed" |
---|
| 183 | apt-get -y install --force-yes ${string_deps} |
---|
| 184 | if [ $? -ne 0 ]; then |
---|
| 185 | errorAndLog "installDependencies(): error installing dependencies" |
---|
| 186 | return 1 |
---|
| 187 | fi |
---|
| 188 | |
---|
| 189 | DEBIAN_FRONTEND=$OLD_DEBIAN_FRONTEND |
---|
| 190 | echoAndLog "installDependencies(): dependencies installed" |
---|
| 191 | } |
---|
| 192 | |
---|
[13a01a7] | 193 | # Hace un backup del fichero pasado por parámetro |
---|
| 194 | # deja un -last y uno para el día |
---|
| 195 | function backupFile() |
---|
| 196 | { |
---|
| 197 | if [ $# -ne 1 ]; then |
---|
| 198 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 199 | exit 1 |
---|
| 200 | fi |
---|
| 201 | |
---|
| 202 | local fichero=$1 |
---|
| 203 | local fecha=`date +%Y%m%d` |
---|
| 204 | |
---|
| 205 | if [ ! -f $fichero ]; then |
---|
| 206 | errorAndLog "${FUNCNAME}(): file $fichero doesn't exists" |
---|
| 207 | return 1 |
---|
| 208 | fi |
---|
| 209 | |
---|
| 210 | echoAndLog "${FUNCNAME}(): realizando backup de $fichero" |
---|
| 211 | |
---|
| 212 | # realiza una copia de la última configuración como last |
---|
| 213 | cp -p $fichero "${fichero}-LAST" |
---|
| 214 | |
---|
| 215 | # si para el día no hay backup lo hace, sino no |
---|
| 216 | if [ ! -f "${fichero}-${fecha}" ]; then |
---|
| 217 | cp -p $fichero "${fichero}-${fecha}" |
---|
| 218 | fi |
---|
| 219 | |
---|
| 220 | echoAndLog "${FUNCNAME}(): backup realizado" |
---|
| 221 | } |
---|
| 222 | |
---|
[a01156a] | 223 | ##################################################################### |
---|
| 224 | ####### Funciones para el manejo de bases de datos |
---|
| 225 | ##################################################################### |
---|
| 226 | |
---|
| 227 | # This function set password to root |
---|
[13a01a7] | 228 | function mysqlSetRootPassword() |
---|
[a01156a] | 229 | { |
---|
| 230 | if [ $# -ne 1 ]; then |
---|
| 231 | errorAndLog "mysqlSetRootPassword(): invalid number of parameters" |
---|
| 232 | exit 1 |
---|
| 233 | fi |
---|
| 234 | |
---|
| 235 | local root_mysql=$1 |
---|
| 236 | echoAndLog "mysqlSetRootPassword(): setting root password in MySQL server" |
---|
| 237 | /usr/bin/mysqladmin -u root password ${root_mysql} |
---|
| 238 | if [ $? -ne 0 ]; then |
---|
| 239 | errorAndLog "mysqlSetRootPassword(): error while setting root password in MySQL server" |
---|
| 240 | return 1 |
---|
| 241 | fi |
---|
| 242 | echoAndLog "mysqlSetRootPassword(): root password saved!" |
---|
| 243 | return 0 |
---|
| 244 | } |
---|
| 245 | |
---|
[892606b9] | 246 | # Si el servicio mysql esta ya instalado cambia la variable de la clave del root por la ya existente |
---|
[13a01a7] | 247 | function mysqlGetRootPassword(){ |
---|
[892606b9] | 248 | local pass_mysql |
---|
| 249 | local pass_mysql2 |
---|
| 250 | stty -echo |
---|
| 251 | echo "Existe un servicio mysql ya instalado" |
---|
| 252 | read -p "Insertar clave de root de Mysql: " pass_mysql |
---|
| 253 | echo "" |
---|
| 254 | read -p "Confirmar clave:" pass_mysql2 |
---|
| 255 | echo "" |
---|
| 256 | stty echo |
---|
| 257 | if [ "$pass_mysql" == "$pass_mysql2" ] ;then |
---|
[8125e7c] | 258 | MYSQL_ROOT_PASSWORD=$pass_mysql |
---|
[892606b9] | 259 | echo "La clave es: ${MYSQL_ROOT_PASSWORD}" |
---|
| 260 | return 0 |
---|
| 261 | else |
---|
| 262 | echo "Las claves no coinciden no se configura la clave del servidor de base de datos." |
---|
| 263 | echo "las operaciones con la base de datos daran error" |
---|
| 264 | return 1 |
---|
| 265 | fi |
---|
| 266 | |
---|
| 267 | |
---|
| 268 | } |
---|
| 269 | |
---|
[a01156a] | 270 | # comprueba si puede conectar con mysql con el usuario root |
---|
| 271 | function mysqlTestConnection() |
---|
| 272 | { |
---|
| 273 | if [ $# -ne 1 ]; then |
---|
| 274 | errorAndLog "mysqlTestConnection(): invalid number of parameters" |
---|
| 275 | exit 1 |
---|
| 276 | fi |
---|
| 277 | |
---|
| 278 | local root_password="${1}" |
---|
| 279 | echoAndLog "mysqlTestConnection(): checking connection to mysql..." |
---|
| 280 | echo "" | mysql -uroot -p"${root_password}" |
---|
| 281 | if [ $? -ne 0 ]; then |
---|
| 282 | errorAndLog "mysqlTestConnection(): connection to mysql failed, check root password and if daemon is running!" |
---|
| 283 | return 1 |
---|
| 284 | else |
---|
| 285 | echoAndLog "mysqlTestConnection(): connection success" |
---|
| 286 | return 0 |
---|
| 287 | fi |
---|
| 288 | } |
---|
| 289 | |
---|
| 290 | # comprueba si la base de datos existe |
---|
| 291 | function mysqlDbExists() |
---|
| 292 | { |
---|
| 293 | if [ $# -ne 2 ]; then |
---|
| 294 | errorAndLog "mysqlDbExists(): invalid number of parameters" |
---|
| 295 | exit 1 |
---|
| 296 | fi |
---|
| 297 | |
---|
| 298 | local root_password="${1}" |
---|
| 299 | local database=$2 |
---|
| 300 | echoAndLog "mysqlDbExists(): checking if $database exists..." |
---|
| 301 | echo "show databases" | mysql -uroot -p"${root_password}" | grep "^${database}$" |
---|
| 302 | if [ $? -ne 0 ]; then |
---|
| 303 | echoAndLog "mysqlDbExists():database $database doesn't exists" |
---|
| 304 | return 1 |
---|
| 305 | else |
---|
| 306 | echoAndLog "mysqlDbExists():database $database exists" |
---|
| 307 | return 0 |
---|
| 308 | fi |
---|
| 309 | } |
---|
| 310 | |
---|
| 311 | function mysqlCheckDbIsEmpty() |
---|
| 312 | { |
---|
| 313 | if [ $# -ne 2 ]; then |
---|
| 314 | errorAndLog "mysqlCheckDbIsEmpty(): invalid number of parameters" |
---|
| 315 | exit 1 |
---|
| 316 | fi |
---|
| 317 | |
---|
| 318 | local root_password="${1}" |
---|
| 319 | local database=$2 |
---|
| 320 | echoAndLog "mysqlCheckDbIsEmpty(): checking if $database is empty..." |
---|
| 321 | num_tablas=`echo "show tables" | mysql -uroot -p"${root_password}" "${database}" | wc -l` |
---|
| 322 | if [ $? -ne 0 ]; then |
---|
| 323 | errorAndLog "mysqlCheckDbIsEmpty(): error executing query, check database and root password" |
---|
| 324 | exit 1 |
---|
| 325 | fi |
---|
| 326 | |
---|
| 327 | if [ $num_tablas -eq 0 ]; then |
---|
| 328 | echoAndLog "mysqlCheckDbIsEmpty():database $database is empty" |
---|
| 329 | return 0 |
---|
| 330 | else |
---|
| 331 | echoAndLog "mysqlCheckDbIsEmpty():database $database has tables" |
---|
| 332 | return 1 |
---|
| 333 | fi |
---|
| 334 | |
---|
| 335 | } |
---|
| 336 | |
---|
| 337 | |
---|
| 338 | function mysqlImportSqlFileToDb() |
---|
| 339 | { |
---|
| 340 | if [ $# -ne 3 ]; then |
---|
| 341 | errorAndLog "mysqlImportSqlFileToDb(): invalid number of parameters" |
---|
| 342 | exit 1 |
---|
| 343 | fi |
---|
| 344 | |
---|
| 345 | local root_password="${1}" |
---|
| 346 | local database=$2 |
---|
| 347 | local sqlfile=$3 |
---|
| 348 | |
---|
| 349 | if [ ! -f $sqlfile ]; then |
---|
| 350 | errorAndLog "mysqlImportSqlFileToDb(): Unable to locate $sqlfile!!" |
---|
| 351 | return 1 |
---|
| 352 | fi |
---|
| 353 | |
---|
| 354 | echoAndLog "mysqlImportSqlFileToDb(): importing sql file to ${database}..." |
---|
| 355 | mysql -uroot -p"${root_password}" "${database}" < $sqlfile |
---|
| 356 | if [ $? -ne 0 ]; then |
---|
| 357 | errorAndLog "mysqlImportSqlFileToDb(): error while importing $sqlfile in database $database" |
---|
| 358 | return 1 |
---|
| 359 | fi |
---|
| 360 | echoAndLog "mysqlImportSqlFileToDb(): file imported to database $database" |
---|
| 361 | return 0 |
---|
| 362 | } |
---|
| 363 | |
---|
| 364 | # Crea la base de datos |
---|
| 365 | function mysqlCreateDb() |
---|
| 366 | { |
---|
| 367 | if [ $# -ne 2 ]; then |
---|
| 368 | errorAndLog "mysqlCreateDb(): invalid number of parameters" |
---|
| 369 | exit 1 |
---|
| 370 | fi |
---|
| 371 | |
---|
| 372 | local root_password="${1}" |
---|
| 373 | local database=$2 |
---|
| 374 | |
---|
| 375 | echoAndLog "mysqlCreateDb(): creating database..." |
---|
| 376 | mysqladmin -u root --password="${root_password}" create $database |
---|
| 377 | if [ $? -ne 0 ]; then |
---|
| 378 | errorAndLog "mysqlCreateDb(): error while creating database $database" |
---|
| 379 | return 1 |
---|
| 380 | fi |
---|
| 381 | errorAndLog "mysqlCreateDb(): database $database created" |
---|
| 382 | return 0 |
---|
| 383 | } |
---|
| 384 | |
---|
| 385 | |
---|
| 386 | function mysqlCheckUserExists() |
---|
| 387 | { |
---|
| 388 | if [ $# -ne 2 ]; then |
---|
| 389 | errorAndLog "mysqlCheckUserExists(): invalid number of parameters" |
---|
| 390 | exit 1 |
---|
| 391 | fi |
---|
| 392 | |
---|
| 393 | local root_password="${1}" |
---|
| 394 | local userdb=$2 |
---|
| 395 | |
---|
| 396 | echoAndLog "mysqlCheckUserExists(): checking if $userdb exists..." |
---|
| 397 | echo "select user from user where user='${userdb}'\\G" |mysql -uroot -p"${root_password}" mysql | grep user |
---|
| 398 | if [ $? -ne 0 ]; then |
---|
| 399 | echoAndLog "mysqlCheckUserExists(): user doesn't exists" |
---|
| 400 | return 1 |
---|
| 401 | else |
---|
| 402 | echoAndLog "mysqlCheckUserExists(): user already exists" |
---|
| 403 | return 0 |
---|
| 404 | fi |
---|
| 405 | |
---|
| 406 | } |
---|
| 407 | |
---|
| 408 | # Crea un usuario administrativo para la base de datos |
---|
| 409 | function mysqlCreateAdminUserToDb() |
---|
| 410 | { |
---|
| 411 | if [ $# -ne 4 ]; then |
---|
| 412 | errorAndLog "mysqlCreateAdminUserToDb(): invalid number of parameters" |
---|
| 413 | exit 1 |
---|
| 414 | fi |
---|
| 415 | |
---|
| 416 | local root_password=$1 |
---|
| 417 | local database=$2 |
---|
| 418 | local userdb=$3 |
---|
| 419 | local passdb=$4 |
---|
| 420 | |
---|
| 421 | echoAndLog "mysqlCreateAdminUserToDb(): creating admin user ${userdb} to database ${database}" |
---|
| 422 | |
---|
| 423 | cat > $WORKDIR/create_${database}.sql <<EOF |
---|
| 424 | GRANT USAGE ON *.* TO '${userdb}'@'localhost' IDENTIFIED BY '${passdb}' ; |
---|
| 425 | GRANT ALL PRIVILEGES ON ${database}.* TO '${userdb}'@'localhost' WITH GRANT OPTION ; |
---|
| 426 | FLUSH PRIVILEGES ; |
---|
| 427 | EOF |
---|
| 428 | mysql -u root --password=${root_password} < $WORKDIR/create_${database}.sql |
---|
| 429 | if [ $? -ne 0 ]; then |
---|
| 430 | errorAndLog "mysqlCreateAdminUserToDb(): error while creating user in mysql" |
---|
| 431 | rm -f $WORKDIR/create_${database}.sql |
---|
| 432 | return 1 |
---|
| 433 | else |
---|
| 434 | echoAndLog "mysqlCreateAdminUserToDb(): user created ok" |
---|
| 435 | rm -f $WORKDIR/create_${database}.sql |
---|
| 436 | return 0 |
---|
| 437 | fi |
---|
| 438 | } |
---|
| 439 | |
---|
| 440 | |
---|
| 441 | ##################################################################### |
---|
| 442 | ####### Funciones para el manejo de Subversion |
---|
| 443 | ##################################################################### |
---|
| 444 | |
---|
[7586ca3] | 445 | function svnCheckoutCode() |
---|
[a01156a] | 446 | { |
---|
[9fb5086] | 447 | if [ $# -ne 1 ]; then |
---|
[13a01a7] | 448 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
[a01156a] | 449 | exit 1 |
---|
| 450 | fi |
---|
| 451 | |
---|
| 452 | local url=$1 |
---|
| 453 | |
---|
[13a01a7] | 454 | echoAndLog "${FUNCNAME}(): downloading subversion code..." |
---|
[a01156a] | 455 | |
---|
[892606b9] | 456 | /usr/bin/svn co "${url}" opengnsys |
---|
[a01156a] | 457 | if [ $? -ne 0 ]; then |
---|
[13a01a7] | 458 | errorAndLog "${FUNCNAME}(): error getting code from ${url}, verify your user and password" |
---|
[a01156a] | 459 | return 1 |
---|
| 460 | fi |
---|
[13a01a7] | 461 | echoAndLog "${FUNCNAME}(): subversion code downloaded" |
---|
[a01156a] | 462 | return 0 |
---|
| 463 | } |
---|
| 464 | |
---|
[13a01a7] | 465 | |
---|
| 466 | function svnExportCode() |
---|
| 467 | { |
---|
| 468 | if [ $# -ne 1 ]; then |
---|
| 469 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 470 | exit 1 |
---|
| 471 | fi |
---|
| 472 | |
---|
| 473 | local url=$1 |
---|
| 474 | |
---|
| 475 | echoAndLog "${FUNCNAME}(): downloading subversion code..." |
---|
| 476 | |
---|
| 477 | /usr/bin/svn export "${url}" opengnsys |
---|
| 478 | if [ $? -ne 0 ]; then |
---|
| 479 | errorAndLog "${FUNCNAME}(): error getting code from ${url}, verify your user and password" |
---|
| 480 | return 1 |
---|
| 481 | fi |
---|
| 482 | echoAndLog "${FUNCNAME}(): subversion code downloaded" |
---|
| 483 | return 0 |
---|
| 484 | } |
---|
| 485 | |
---|
| 486 | |
---|
[892606b9] | 487 | ############################################################ |
---|
[7586ca3] | 488 | ### Detectar red |
---|
| 489 | ############################################################ |
---|
| 490 | |
---|
| 491 | function getNetworkSettings() |
---|
| 492 | { |
---|
| 493 | # Variables globales definidas: |
---|
| 494 | # - SERVERIP: IP local del servidor. |
---|
| 495 | # - NETIP: IP de la red. |
---|
| 496 | # - NETMASK: máscara de red. |
---|
| 497 | # - NETBROAD: IP de difusión de la red. |
---|
| 498 | # - ROUTERIP: IP del router. |
---|
| 499 | # - DNSIP: IP del servidor DNS. |
---|
| 500 | |
---|
| 501 | echoAndLog "getNetworkSettings(): Detecting default network parameters." |
---|
[10023eb] | 502 | SERVERIP=$(LANG=C ifconfig | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | head -n1 | awk '{print $1}') |
---|
| 503 | NETMASK=$(LANG=C ifconfig | grep 'Mask:'| grep -v '127.0.0.1' | cut -d: -f4 | head -n1 | awk '{print $1}') |
---|
| 504 | NETBROAD=$(LANG=C ifconfig | grep 'Bcast:'| grep -v '127.0.0.1' | cut -d: -f3 | head -n1 | awk '{print $1}') |
---|
[13a01a7] | 505 | NETIP=$(netstat -r | grep $NETMASK | head -n1 | awk '{print $1}') |
---|
[7586ca3] | 506 | ROUTERIP=$(netstat -nr | awk '$1~/0\.0\.0\.0/ {print $2}') |
---|
| 507 | DNSIP=$(awk '/nameserver/ {print $2}' /etc/resolv.conf) |
---|
| 508 | if [ -z "$NETIP" -o -z "$NETMASK" ]; then |
---|
| 509 | errorAndLog "getNetworkSettings(): Network not detected." |
---|
| 510 | exit 1 |
---|
| 511 | fi |
---|
[cc7eab7] | 512 | |
---|
| 513 | # Variables de ejecución de Apache |
---|
| 514 | # - APACHE_RUN_USER |
---|
| 515 | # - APACHE_RUN_GROUP |
---|
| 516 | if [ -f /etc/apache2/envvars ]; then |
---|
| 517 | source /etc/apache2/envvars |
---|
| 518 | fi |
---|
| 519 | APACHE_RUN_USER=${APACHE_RUN_USER:-"www-data"} |
---|
| 520 | APACHE_RUN_GROUP=${APACHE_RUN_GROUP:-"www-data"} |
---|
[7586ca3] | 521 | } |
---|
| 522 | |
---|
| 523 | |
---|
| 524 | ############################################################ |
---|
[892606b9] | 525 | ### Esqueleto para el Servicio pxe y contenedor tftpboot ### |
---|
| 526 | ############################################################ |
---|
| 527 | |
---|
| 528 | function tftpConfigure() { |
---|
| 529 | echo "Configurando el servicio tftp" |
---|
| 530 | basetftp=/var/lib/tftpboot |
---|
| 531 | |
---|
| 532 | # reiniciamos demonio internet ????? porque ???? |
---|
| 533 | /etc/init.d/openbsd-inetd start |
---|
| 534 | |
---|
| 535 | # preparacion contenedor tftpboot |
---|
| 536 | cp -pr /usr/lib/syslinux/ ${basetftp}/syslinux |
---|
| 537 | cp /usr/lib/syslinux/pxelinux.0 ${basetftp} |
---|
| 538 | # prepamos el directorio de la configuracion de pxe |
---|
| 539 | mkdir -p ${basetftp}/pxelinux.cfg |
---|
| 540 | cat > ${basetftp}/pxelinux.cfg/default <<EOF |
---|
| 541 | DEFAULT pxe |
---|
| 542 | |
---|
| 543 | LABEL pxe |
---|
| 544 | KERNEL linux |
---|
| 545 | APPEND initrd=initrd.gz ip=dhcp ro vga=788 irqpoll acpi=on |
---|
| 546 | EOF |
---|
| 547 | # comprobamos el servicio tftp |
---|
| 548 | sleep 1 |
---|
| 549 | testPxe |
---|
| 550 | ## damos perfimos de lectura a usuario web. |
---|
[cc7eab7] | 551 | chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP ${basetftp} |
---|
[892606b9] | 552 | } |
---|
| 553 | |
---|
| 554 | function testPxe () { |
---|
| 555 | cd /tmp |
---|
| 556 | echo "comprobando servicio pxe ..... Espere" |
---|
| 557 | tftp -v localhost -c get pxelinux.0 /tmp/pxelinux.0 && echo "servidor tftp OK" || echo "servidor tftp KO" |
---|
| 558 | cd / |
---|
| 559 | } |
---|
| 560 | |
---|
| 561 | ######################################################################## |
---|
[b6906f7] | 562 | ## Configuracion servicio NFS |
---|
[892606b9] | 563 | ######################################################################## |
---|
| 564 | |
---|
[13a01a7] | 565 | # function nfsConfigure () |
---|
| 566 | # { |
---|
| 567 | # echoAndLog "${FUNCNAME}(): Sample NFS Configuration." |
---|
| 568 | # sed -e "s/NETIP/$NETIP/g" -e "s/NETMASK/$NETMASK/g" $WORKDIR/opengnsys/server/NFS/exports >> /etc/exports |
---|
| 569 | # /etc/init.d/nfs-kernel-server restart |
---|
| 570 | # exportfs -va |
---|
| 571 | # echoAndLog "${FUNCNAME}(): Sample NFS Configured in file \"/etc/exports\"." |
---|
| 572 | # } |
---|
| 573 | |
---|
| 574 | # ADVERTENCIA: usa variables globales NETIP y NETMASK! |
---|
| 575 | function nfsConfigure() |
---|
[7586ca3] | 576 | { |
---|
[13a01a7] | 577 | echoAndLog "${FUNCNAME}(): Config nfs server." |
---|
| 578 | |
---|
| 579 | backupFile /etc/exports |
---|
| 580 | |
---|
| 581 | nfsAddExport /opt/opengnsys/client ${NETIP}/${NETMASK}:ro,no_subtree_check,no_root_squash,sync |
---|
| 582 | if [ $? -ne 0 ]; then |
---|
| 583 | errorAndLog "${FUNCNAME}(): error while adding nfs client config" |
---|
| 584 | return 1 |
---|
| 585 | fi |
---|
| 586 | |
---|
| 587 | nfsAddExport /opt/opengnsys/images ${NETIP}/${NETMASK}:rw,no_subtree_check,no_root_squash,sync,crossmnt |
---|
| 588 | if [ $? -ne 0 ]; then |
---|
| 589 | errorAndLog "${FUNCNAME}(): error while adding nfs images config" |
---|
| 590 | return 1 |
---|
| 591 | fi |
---|
| 592 | |
---|
| 593 | nfsAddExport /opt/opengnsys/log/clients ${NETIP}/${NETMASK}:rw,no_subtree_check,no_root_squash,sync |
---|
| 594 | if [ $? -ne 0 ]; then |
---|
| 595 | errorAndLog "${FUNCNAME}(): error while adding logging client config" |
---|
| 596 | return 1 |
---|
| 597 | fi |
---|
| 598 | |
---|
[7586ca3] | 599 | /etc/init.d/nfs-kernel-server restart |
---|
[13a01a7] | 600 | |
---|
[b6906f7] | 601 | exportfs -va |
---|
[13a01a7] | 602 | if [ $? -ne 0 ]; then |
---|
| 603 | errorAndLog "${FUNCNAME}(): error while configure exports" |
---|
| 604 | return 1 |
---|
| 605 | fi |
---|
| 606 | |
---|
| 607 | echoAndLog "${FUNCNAME}(): Added NFS configuration to file \"/etc/exports\"." |
---|
| 608 | return 0 |
---|
[b6906f7] | 609 | } |
---|
[892606b9] | 610 | |
---|
[b6906f7] | 611 | |
---|
[13a01a7] | 612 | # ejemplos: |
---|
| 613 | #nfsAddExport /opt/opengnsys 192.168.0.0/255.255.255.0:ro,no_subtree_check,no_root_squash,sync |
---|
| 614 | #nfsAddExport /opt/opengnsys 192.168.0.0/255.255.255.0 |
---|
| 615 | #nfsAddExport /opt/opengnsys 80.20.2.1:ro 192.123.32.2:rw |
---|
| 616 | function nfsAddExport() |
---|
| 617 | { |
---|
| 618 | if [ $# -lt 2 ]; then |
---|
| 619 | errorAndLog "${FUNCNAME}(): invalid number of parameters" |
---|
| 620 | exit 1 |
---|
| 621 | fi |
---|
| 622 | |
---|
| 623 | if [ ! -f /etc/exports ]; then |
---|
| 624 | errorAndLog "${FUNCNAME}(): /etc/exports don't exists" |
---|
| 625 | return 1 |
---|
| 626 | fi |
---|
| 627 | |
---|
| 628 | local export="${1}" |
---|
| 629 | local contador=0 |
---|
| 630 | local cadenaexport |
---|
| 631 | |
---|
| 632 | grep "^${export}" /etc/exports > /dev/null |
---|
| 633 | if [ $? -eq 0 ]; then |
---|
| 634 | echoAndLog "${FUNCNAME}(): $export exists in /etc/exports, omiting" |
---|
| 635 | return 0 |
---|
| 636 | fi |
---|
| 637 | |
---|
| 638 | cadenaexport="${export}" |
---|
| 639 | for parametro in $* |
---|
| 640 | do |
---|
| 641 | if [ $contador -gt 0 ] |
---|
| 642 | then |
---|
| 643 | host=`echo $parametro | awk -F: '{print $1}'` |
---|
| 644 | options=`echo $parametro | awk -F: '{print $2}'` |
---|
| 645 | if [ "${host}" == "" ]; then |
---|
| 646 | errorAndLog "${FUNCNAME}(): host can't be empty" |
---|
| 647 | return 1 |
---|
| 648 | fi |
---|
| 649 | cadenaexport="${cadenaexport}\t${host}" |
---|
| 650 | |
---|
| 651 | if [ "${options}" != "" ]; then |
---|
| 652 | cadenaexport="${cadenaexport}(${options})" |
---|
| 653 | fi |
---|
| 654 | fi |
---|
| 655 | let contador=contador+1 |
---|
| 656 | done |
---|
| 657 | |
---|
| 658 | echo -en "$cadenaexport\n" >> /etc/exports |
---|
| 659 | |
---|
| 660 | echoAndLog "${FUNCNAME}(): add $export to /etc/exports" |
---|
| 661 | |
---|
| 662 | return 0 |
---|
| 663 | } |
---|
| 664 | |
---|
[b6906f7] | 665 | ######################################################################## |
---|
| 666 | ## Configuracion servicio DHCP |
---|
| 667 | ######################################################################## |
---|
| 668 | |
---|
[7586ca3] | 669 | function dhcpConfigure() |
---|
| 670 | { |
---|
[b6906f7] | 671 | echoAndLog "dhcpConfigure(): Sample DHCP Configuration." |
---|
[7586ca3] | 672 | sed -e "s/SERVERIP/$SERVERIP/g" \ |
---|
| 673 | -e "s/NETIP/$NETIP/g" \ |
---|
| 674 | -e "s/NETMASK/$NETMASK/g" \ |
---|
| 675 | -e "s/NETBROAD/$NETBROAD/g" \ |
---|
| 676 | -e "s/ROUTERIP/$ROUTERIP/g" \ |
---|
| 677 | -e "s/DNSIP/$DNSIP/g" \ |
---|
| 678 | $WORKDIR/opengnsys/server/DHCP/dhcpd.conf > /etc/dhcp3/dhcpd.conf |
---|
| 679 | /etc/init.d/dhcp3-server restart |
---|
| 680 | echoAndLog "dhcpConfigure(): Sample DHCP Configured in file \"/etc/dhcp3/dhcpd.conf\"." |
---|
[892606b9] | 681 | } |
---|
| 682 | |
---|
| 683 | |
---|
[a01156a] | 684 | ##################################################################### |
---|
| 685 | ####### Funciones específicas de la instalación de Opengnsys |
---|
| 686 | ##################################################################### |
---|
| 687 | |
---|
[7586ca3] | 688 | # Copiar ficheros del OpenGNSys Web Console. |
---|
| 689 | function installWebFiles() |
---|
| 690 | { |
---|
| 691 | echoAndLog "installWebFiles(): Installing web files..." |
---|
| 692 | cp -ar $WORKDIR/opengnsys/admin/WebConsole/* $INSTALL_TARGET/www #*/ comentario para doxigen |
---|
| 693 | if [ $? != 0 ]; then |
---|
| 694 | errorAndLog "installWebFiles(): Error copying web files." |
---|
| 695 | exit 1 |
---|
| 696 | fi |
---|
| 697 | find $INSTALL_TARGET/www -name .svn -type d -exec rm -fr {} \; 2>/dev/null |
---|
| 698 | # Cambiar permisos para ficheros especiales. |
---|
[cc7eab7] | 699 | chown -R $APACHE_RUN_USER:$APACHE_RUN_GROUP \ |
---|
| 700 | $INSTALL_TARGET/www/includes \ |
---|
| 701 | $INSTALL_TARGET/www/comandos/gestores/filescripts \ |
---|
| 702 | $INSTALL_TARGET/www/images/icons |
---|
[7586ca3] | 703 | echoAndLog "installWebFiles(): Web files installed successfully." |
---|
| 704 | } |
---|
| 705 | |
---|
| 706 | # Configuración específica de Apache. |
---|
[892606b9] | 707 | function openGnsysInstallWebConsoleApacheConf() |
---|
[a01156a] | 708 | { |
---|
| 709 | if [ $# -ne 2 ]; then |
---|
[892606b9] | 710 | errorAndLog "openGnsysInstallWebConsoleApacheConf(): invalid number of parameters" |
---|
[a01156a] | 711 | exit 1 |
---|
| 712 | fi |
---|
| 713 | |
---|
| 714 | local path_opengnsys_base=$1 |
---|
| 715 | local path_apache2_confd=$2 |
---|
[892606b9] | 716 | local path_web_console=${path_opengnsys_base}/www |
---|
[a01156a] | 717 | |
---|
[892606b9] | 718 | if [ ! -d $path_apache2_confd ]; then |
---|
| 719 | errorAndLog "openGnsysInstallWebConsoleApacheConf(): path to apache2 conf.d can not found, verify your server installation" |
---|
| 720 | return 1 |
---|
| 721 | fi |
---|
| 722 | |
---|
[7586ca3] | 723 | mkdir -p $path_apache2_confd/{sites-available,sites-enabled} |
---|
[892606b9] | 724 | |
---|
| 725 | echoAndLog "openGnsysInstallWebConsoleApacheConf(): creating apache2 config file.." |
---|
[a01156a] | 726 | |
---|
| 727 | # genera configuración |
---|
[892606b9] | 728 | cat > $path_opengnsys_base/etc/apache.conf <<EOF |
---|
[cc7eab7] | 729 | # OpenGNSys Web Console configuration for Apache |
---|
[a01156a] | 730 | |
---|
[892606b9] | 731 | Alias /opengnsys ${path_web_console} |
---|
[a01156a] | 732 | |
---|
[892606b9] | 733 | <Directory ${path_web_console}> |
---|
[a01156a] | 734 | Options -Indexes FollowSymLinks |
---|
| 735 | DirectoryIndex acceso.php |
---|
| 736 | </Directory> |
---|
| 737 | EOF |
---|
| 738 | |
---|
[7586ca3] | 739 | ln -fs $path_opengnsys_base/etc/apache.conf $path_apache2_confd/sites-available/opengnsys.conf |
---|
| 740 | ln -fs $path_apache2_confd/sites-available/opengnsys.conf $path_apache2_confd/sites-enabled/opengnsys.conf |
---|
[a01156a] | 741 | if [ $? -ne 0 ]; then |
---|
[892606b9] | 742 | errorAndLog "openGnsysInstallWebConsoleApacheConf(): config file can't be linked to apache conf, verify your server installation" |
---|
[a01156a] | 743 | return 1 |
---|
| 744 | else |
---|
[077dd7c5] | 745 | echoAndLog "openGnsysInstallWebConsoleApacheConf(): config file created and linked, restarting apache daemon" |
---|
| 746 | /etc/init.d/apache2 restart |
---|
[a01156a] | 747 | return 0 |
---|
| 748 | fi |
---|
| 749 | } |
---|
| 750 | |
---|
| 751 | # Crea la estructura base de la instalación de opengnsys |
---|
[318efac] | 752 | function openGnsysInstallCreateDirs() |
---|
[a01156a] | 753 | { |
---|
| 754 | if [ $# -ne 1 ]; then |
---|
| 755 | errorAndLog "openGnsysInstallCreateDirs(): invalid number of parameters" |
---|
| 756 | exit 1 |
---|
| 757 | fi |
---|
| 758 | |
---|
| 759 | local path_opengnsys_base=$1 |
---|
| 760 | |
---|
| 761 | echoAndLog "openGnsysInstallCreateDirs(): creating directory paths in $path_opengnsys_base" |
---|
| 762 | |
---|
| 763 | mkdir -p $path_opengnsys_base |
---|
[077dd7c5] | 764 | mkdir -p $path_opengnsys_base/admin/{autoexec,comandos,menus,usuarios} |
---|
[a01156a] | 765 | mkdir -p $path_opengnsys_base/bin |
---|
[5c33840] | 766 | mkdir -p $path_opengnsys_base/client |
---|
| 767 | mkdir -p $path_opengnsys_base/etc |
---|
[a01156a] | 768 | mkdir -p $path_opengnsys_base/lib |
---|
[1cc5697] | 769 | mkdir -p $path_opengnsys_base/log/clients |
---|
[7586ca3] | 770 | mkdir -p $path_opengnsys_base/sbin |
---|
[a01156a] | 771 | mkdir -p $path_opengnsys_base/www |
---|
[5c33840] | 772 | mkdir -p $path_opengnsys_base/images |
---|
[b6906f7] | 773 | ln -fs /var/lib/tftpboot $path_opengnsys_base |
---|
| 774 | ln -fs $path_opengnsys_base/log /var/log/opengnsys |
---|
[5c33840] | 775 | |
---|
[a01156a] | 776 | if [ $? -ne 0 ]; then |
---|
| 777 | errorAndLog "openGnsysInstallCreateDirs(): error while creating dirs. Do you have write permissions?" |
---|
| 778 | return 1 |
---|
| 779 | fi |
---|
| 780 | |
---|
| 781 | echoAndLog "openGnsysInstallCreateDirs(): directory paths created" |
---|
| 782 | return 0 |
---|
| 783 | } |
---|
| 784 | |
---|
[463a1d49] | 785 | # Copia ficheros de configuración y ejecutables genéricos del servidor. |
---|
[318efac] | 786 | function openGnsysCopyServerFiles () { |
---|
[463a1d49] | 787 | if [ $# -ne 1 ]; then |
---|
| 788 | errorAndLog "openGnsysCopyServerFiles(): invalid number of parameters" |
---|
| 789 | exit 1 |
---|
| 790 | fi |
---|
| 791 | |
---|
| 792 | local path_opengnsys_base=$1 |
---|
| 793 | |
---|
[892606b9] | 794 | local SOURCES=( client/boot/initrd-generator \ |
---|
[b6906f7] | 795 | client/boot/upgrade-clients-udeb.sh \ |
---|
| 796 | client/boot/udeblist.conf ) |
---|
[892606b9] | 797 | local TARGETS=( bin/initrd-generator \ |
---|
[b6906f7] | 798 | bin/upgrade-clients-udeb.sh \ |
---|
| 799 | etc/udeblist.conf ) |
---|
[463a1d49] | 800 | |
---|
| 801 | if [ ${#SOURCES[@]} != ${#TARGETS[@]} ]; then |
---|
| 802 | errorAndLog "openGnsysCopyServerFiles(): inconsistent number of array items" |
---|
| 803 | exit 1 |
---|
| 804 | fi |
---|
| 805 | |
---|
[7586ca3] | 806 | echoAndLog "openGnsysCopyServerFiles(): copying files to server directories" |
---|
[f2bb433] | 807 | |
---|
[7586ca3] | 808 | pushd $WORKDIR/opengnsys |
---|
[463a1d49] | 809 | local i |
---|
| 810 | for (( i = 0; i < ${#SOURCES[@]}; i++ )); do |
---|
| 811 | if [ -f "${SOURCES[$i]}" ]; then |
---|
[f2bb433] | 812 | echoAndLog "copying ${SOURCES[$i]} to $path_opengnsys_base/${TARGETS[$i]}" |
---|
[463a1d49] | 813 | cp -p "${SOURCES[$i]}" "${path_opengnsys_base}/${TARGETS[$i]}" |
---|
| 814 | fi |
---|
| 815 | if [ -d "${SOURCES[$i]}" ]; then |
---|
| 816 | echoAndLog "openGnsysCopyServerFiles(): copying content of ${SOURCES[$i]} to $path_opengnsys_base/${TARGETS[$i]}" |
---|
[7586ca3] | 817 | cp -ar "${SOURCES[$i]}/*" "${path_opengnsys_base}/${TARGETS[$i]}" |
---|
[463a1d49] | 818 | fi |
---|
| 819 | done |
---|
[7586ca3] | 820 | popd |
---|
[892606b9] | 821 | } |
---|
| 822 | |
---|
[7586ca3] | 823 | #################################################################### |
---|
| 824 | ### Funciones de compilación de códifo fuente de servicios |
---|
| 825 | #################################################################### |
---|
| 826 | |
---|
[b6906f7] | 827 | # Compilar los servicios de OpenGNsys |
---|
[7586ca3] | 828 | function servicesCompilation () |
---|
| 829 | { |
---|
[13a01a7] | 830 | local hayErrores=0 |
---|
| 831 | |
---|
[b6906f7] | 832 | # Compilar OpenGNSys Server |
---|
[13a01a7] | 833 | echoAndLog "${FUNCNAME}(): Compiling OpenGNSys Admin Server" |
---|
[318efac] | 834 | pushd $WORKDIR/opengnsys/admin/Services/ogAdmServer |
---|
[b6906f7] | 835 | make && make install |
---|
[13a01a7] | 836 | if [ $? -ne 0 ]; then |
---|
| 837 | echoAndLog "${FUNCNAME}(): error while compiling OpenGNSys Admin Server" |
---|
| 838 | hayErrores=1 |
---|
| 839 | fi |
---|
[7586ca3] | 840 | popd |
---|
[b6906f7] | 841 | # Compilar OpenGNSys Repository Manager |
---|
[13a01a7] | 842 | echoAndLog "${FUNCNAME}(): Compiling OpenGNSys Repository Manager" |
---|
[318efac] | 843 | pushd $WORKDIR/opengnsys/admin/Services/ogAdmRepo |
---|
[b6906f7] | 844 | make && make install |
---|
[13a01a7] | 845 | if [ $? -ne 0 ]; then |
---|
| 846 | echoAndLog "${FUNCNAME}(): error while compiling OpenGNSys Repository Manager" |
---|
| 847 | hayErrores=1 |
---|
| 848 | fi |
---|
[8125e7c] | 849 | popd |
---|
[b6906f7] | 850 | # Compilar OpenGNSys Client |
---|
| 851 | echoAndLog "servicesCompilation(): Compiling OpenGNSys Admin Client" |
---|
[318efac] | 852 | pushd $WORKDIR/opengnsys/admin/Services/ogAdmClient |
---|
| 853 | make && mv ogAdmClient ../../../client/nfsexport/bin |
---|
[13a01a7] | 854 | if [ $? -ne 0 ]; then |
---|
| 855 | echoAndLog "${FUNCNAME}(): error while compiling OpenGNSys Admin Client" |
---|
| 856 | hayErrores=1 |
---|
| 857 | fi |
---|
[318efac] | 858 | popd |
---|
[13a01a7] | 859 | |
---|
| 860 | return $hayErrores |
---|
[b6906f7] | 861 | } |
---|
| 862 | |
---|
| 863 | |
---|
[892606b9] | 864 | #################################################################### |
---|
| 865 | ### Funciones instalacion cliente opengnsys |
---|
| 866 | #################################################################### |
---|
| 867 | |
---|
[7586ca3] | 868 | function openGnsysClientCreate () |
---|
| 869 | { |
---|
| 870 | local OSDISTRIB OSCODENAME |
---|
[892606b9] | 871 | |
---|
[b6906f7] | 872 | echoAndLog "openGnsysClientCreate(): Copying OpenGNSys Client files." |
---|
[892606b9] | 873 | cp -ar $WORKDIR/opengnsys/client/nfsexport/* $INSTALL_TARGET/client |
---|
[b6906f7] | 874 | find $INSTALL_TARGET/client -name .svn -type d -exec rm -fr {} \; 2>/dev/null |
---|
[23388bd5] | 875 | chmod +x $INSTALL_TARGET/client/admin/scripts/* |
---|
[b6906f7] | 876 | echoAndLog "openGnsysClientCreate(): Copying OpenGNSys Cloning Engine files." |
---|
| 877 | mkdir -p $INSTALL_TARGET/client/lib/engine/bin |
---|
[892606b9] | 878 | cp -ar $WORKDIR/opengnsys/client/engine/*.lib $INSTALL_TARGET/client/lib/engine/bin |
---|
| 879 | |
---|
[cc7eab7] | 880 | # Cargar Kernel, Initrd y paquetes udeb para la distribución del servidor (o por defecto). |
---|
[d345fa6] | 881 | OSDISTRIB=$(lsb_release -i | awk -F: '{sub(/\t/,""); print $2}') 2>/dev/null |
---|
| 882 | OSCODENAME=$(lsb_release -c | awk -F: '{sub(/\t/,""); print $2}') 2>/dev/null |
---|
[7586ca3] | 883 | if [ "$OSDISTRIB" = "Ubuntu" -a -n "$OSCODENAME" ]; then |
---|
| 884 | echoAndLog "openGnsysClientCreate(): Loading Kernel and Initrd files for $OSDISTRIB $OSCODENAME." |
---|
| 885 | $INSTALL_TARGET/bin/initrd-generator -t $INSTALL_TARGET/tftpboot -v "$OSCODENAME" |
---|
| 886 | echoAndLog "openGnsysClientCreate(): Loading udeb files for $OSDISTRIB $OSCODENAME." |
---|
| 887 | $INSTALL_TARGET/bin/upgrade-clients-udeb.sh "$OSCODENAME" |
---|
| 888 | else |
---|
[cc7eab7] | 889 | echoAndLog "openGnsysClientCreate(): Loading default Kernel and Initrd files." |
---|
[7586ca3] | 890 | $INSTALL_TARGET/bin/initrd-generator -t $INSTALL_TARGET/tftpboot/ |
---|
[892606b9] | 891 | |
---|
[cc7eab7] | 892 | echoAndLog "openGnsysClientCreate(): Loading default udeb files." |
---|
[7586ca3] | 893 | $INSTALL_TARGET/bin/upgrade-clients-udeb.sh |
---|
| 894 | fi |
---|
[463a1d49] | 895 | } |
---|
| 896 | |
---|
| 897 | |
---|
[cc7eab7] | 898 | # Configuración básica de servicios de OpenGNSys |
---|
| 899 | function openGnsysConfigure() |
---|
| 900 | { |
---|
| 901 | echoAndLog "openGnsysConfigure(): Copying init files." |
---|
| 902 | cp -p $WORKDIR/opengnsys/admin/Services/opengnsys.init /etc/init.d/opengnsys |
---|
| 903 | cp -p $WORKDIR/opengnsys/admin/Services/opengnsys.default /etc/default/opengnsys |
---|
| 904 | update-rc.d opengnsys defaults |
---|
| 905 | echoAndLog "openGnsysConfigure(): Creating OpenGNSys config file in \"$INSTALL_TARGET/etc\"." |
---|
[1a22cd2] | 906 | perl -pi -e "s/SERVERIP/$SERVERIP/g" $INSTALL_TARGET/etc/ogAdmServer.cfg |
---|
| 907 | perl -pi -e "s/SERVERIP/$SERVERIP/g" $INSTALL_TARGET/etc/ogAdmRepo.cfg |
---|
| 908 | sed -e "s/SERVERIP/$SERVERIP/g" $WORKDIR/opengnsys/admin/Services/ogAdmClient/ogAdmClient.cfg > $INSTALL_TARGET/client/etc/ogAdmClient.cfg |
---|
| 909 | echoAndLog "openGnsysConfigure(): Creating Web Console config file" |
---|
[077dd7c5] | 910 | perl -pi -e "s/SERVERIP/$SERVERIP/g; s/OPENGNSYSURL/http:\/\/$SERVERIP\/opengnsys/g" $INSTALL_TARGET/www/controlacceso.php |
---|
[cc7eab7] | 911 | echoAndLog "openGnsysConfiguration(): Starting OpenGNSys services." |
---|
| 912 | /etc/init.d/opengnsys start |
---|
| 913 | } |
---|
| 914 | |
---|
[b6906f7] | 915 | |
---|
[a01156a] | 916 | ##################################################################### |
---|
[b6906f7] | 917 | ####### Proceso de instalación de OpenGNSys |
---|
[a01156a] | 918 | ##################################################################### |
---|
| 919 | |
---|
[7586ca3] | 920 | |
---|
[cc7eab7] | 921 | echoAndLog "OpenGNSys installation begins at $(date)" |
---|
| 922 | |
---|
[7586ca3] | 923 | # Detectar parámetros de red por defecto |
---|
| 924 | getNetworkSettings |
---|
| 925 | if [ $? -ne 0 ]; then |
---|
| 926 | errorAndLog "Error reading default network settings." |
---|
| 927 | exit 1 |
---|
| 928 | fi |
---|
| 929 | |
---|
[318efac] | 930 | # Actualizar repositorios |
---|
| 931 | apt-get update |
---|
| 932 | |
---|
[b6906f7] | 933 | # Instalación de dependencias (paquetes de sistema operativo). |
---|
[a01156a] | 934 | declare -a notinstalled |
---|
| 935 | checkDependencies DEPENDENCIES notinstalled |
---|
| 936 | if [ $? -ne 0 ]; then |
---|
| 937 | installDependencies notinstalled |
---|
| 938 | if [ $? -ne 0 ]; then |
---|
| 939 | echoAndLog "Error while installing some dependeces, please verify your server installation before continue" |
---|
| 940 | exit 1 |
---|
| 941 | fi |
---|
| 942 | fi |
---|
| 943 | |
---|
[b6906f7] | 944 | # Arbol de directorios de OpenGNSys. |
---|
[a01156a] | 945 | openGnsysInstallCreateDirs ${INSTALL_TARGET} |
---|
| 946 | if [ $? -ne 0 ]; then |
---|
| 947 | errorAndLog "Error while creating directory paths!" |
---|
| 948 | exit 1 |
---|
| 949 | fi |
---|
[b6906f7] | 950 | |
---|
| 951 | # Descarga del repositorio de código en directorio temporal |
---|
[13a01a7] | 952 | #svnCheckoutCode $SVN_URL |
---|
| 953 | svnExportCode $SVN_URL |
---|
[a01156a] | 954 | if [ $? -ne 0 ]; then |
---|
| 955 | errorAndLog "Error while getting code from svn" |
---|
| 956 | exit 1 |
---|
| 957 | fi |
---|
| 958 | |
---|
[b6906f7] | 959 | # Compilar código fuente de los servicios de OpenGNSys. |
---|
| 960 | servicesCompilation |
---|
[13a01a7] | 961 | if [ $? -ne 0 ]; then |
---|
| 962 | errorAndLog "Error while compiling OpenGnsys services" |
---|
| 963 | exit 1 |
---|
| 964 | fi |
---|
[b6906f7] | 965 | |
---|
| 966 | # Configurando tftp |
---|
[318efac] | 967 | tftpConfigure |
---|
[b6906f7] | 968 | |
---|
| 969 | # Configuración NFS |
---|
| 970 | nfsConfigure |
---|
[13a01a7] | 971 | if [ $? -ne 0 ]; then |
---|
| 972 | errorAndLog "Error while configuring nfs server!" |
---|
| 973 | exit 1 |
---|
| 974 | fi |
---|
[b6906f7] | 975 | |
---|
| 976 | # Configuración ejemplo DHCP |
---|
| 977 | dhcpConfigure |
---|
| 978 | |
---|
| 979 | # Copiar ficheros de servicios OpenGNSys Server. |
---|
[463a1d49] | 980 | openGnsysCopyServerFiles ${INSTALL_TARGET} |
---|
| 981 | if [ $? -ne 0 ]; then |
---|
| 982 | errorAndLog "Error while copying the server files!" |
---|
| 983 | exit 1 |
---|
| 984 | fi |
---|
| 985 | |
---|
[b6906f7] | 986 | # Instalar Base de datos de OpenGNSys Admin. |
---|
| 987 | isInArray notinstalled "mysql-server" |
---|
| 988 | if [ $? -eq 0 ]; then |
---|
| 989 | mysqlSetRootPassword ${MYSQL_ROOT_PASSWORD} |
---|
| 990 | else |
---|
| 991 | mysqlGetRootPassword |
---|
| 992 | |
---|
| 993 | fi |
---|
[463a1d49] | 994 | |
---|
[a01156a] | 995 | mysqlTestConnection ${MYSQL_ROOT_PASSWORD} |
---|
| 996 | if [ $? -ne 0 ]; then |
---|
| 997 | errorAndLog "Error while connection to mysql" |
---|
| 998 | exit 1 |
---|
| 999 | fi |
---|
[892606b9] | 1000 | mysqlDbExists ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1001 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1002 | echoAndLog "Creating Web Console database" |
---|
[892606b9] | 1003 | mysqlCreateDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1004 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1005 | errorAndLog "Error while creating Web Console database" |
---|
[a01156a] | 1006 | exit 1 |
---|
| 1007 | fi |
---|
| 1008 | else |
---|
[cc7eab7] | 1009 | echoAndLog "Web Console database exists, ommiting creation" |
---|
[a01156a] | 1010 | fi |
---|
| 1011 | |
---|
[892606b9] | 1012 | mysqlCheckUserExists ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DB_USER} |
---|
[a01156a] | 1013 | if [ $? -ne 0 ]; then |
---|
| 1014 | echoAndLog "Creating user in database" |
---|
[892606b9] | 1015 | mysqlCreateAdminUserToDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} ${OPENGNSYS_DB_USER} "${OPENGNSYS_DB_PASSWD}" |
---|
[a01156a] | 1016 | if [ $? -ne 0 ]; then |
---|
[cc7eab7] | 1017 | errorAndLog "Error while creating database user" |
---|
[a01156a] | 1018 | exit 1 |
---|
| 1019 | fi |
---|
| 1020 | |
---|
| 1021 | fi |
---|
| 1022 | |
---|
[892606b9] | 1023 | mysqlCheckDbIsEmpty ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} |
---|
[a01156a] | 1024 | if [ $? -eq 0 ]; then |
---|
| 1025 | echoAndLog "Creating tables..." |
---|
[892606b9] | 1026 | if [ -f $WORKDIR/$OPENGNSYS_DB_CREATION_FILE ]; then |
---|
| 1027 | mysqlImportSqlFileToDb ${MYSQL_ROOT_PASSWORD} ${OPENGNSYS_DATABASE} $WORKDIR/$OPENGNSYS_DB_CREATION_FILE |
---|
[a01156a] | 1028 | else |
---|
[892606b9] | 1029 | errorAndLog "Unable to locate $WORKDIR/$OPENGNSYS_DB_CREATION_FILE!!" |
---|
[a01156a] | 1030 | exit 1 |
---|
| 1031 | fi |
---|
| 1032 | fi |
---|
| 1033 | |
---|
| 1034 | # copiando paqinas web |
---|
[7586ca3] | 1035 | installWebFiles |
---|
[a01156a] | 1036 | |
---|
| 1037 | # creando configuracion de apache2 |
---|
[892606b9] | 1038 | openGnsysInstallWebConsoleApacheConf $INSTALL_TARGET /etc/apache2 |
---|
[a01156a] | 1039 | if [ $? -ne 0 ]; then |
---|
[7586ca3] | 1040 | errorAndLog "Error configuring Apache for OpenGNSYS Admin" |
---|
[a01156a] | 1041 | exit 1 |
---|
| 1042 | fi |
---|
| 1043 | |
---|
| 1044 | popd |
---|
[892606b9] | 1045 | |
---|
| 1046 | # Creando la estructura del cliente |
---|
| 1047 | openGnsysClientCreate |
---|
| 1048 | |
---|
[cc7eab7] | 1049 | # Configuración de servicios de OpenGNSys |
---|
| 1050 | openGnsysConfigure |
---|
[2308fc7] | 1051 | |
---|
[077dd7c5] | 1052 | #rm -rf $WORKDIR |
---|
[cc7eab7] | 1053 | echoAndLog "OpenGNSys installation finished at $(date)" |
---|
[2308fc7] | 1054 | |
---|