Shell Skript: openSUSE 12.2 Mirror Script
Das folgende Shell Skript erstellt einen lokalen Mirror für openSUSE 12.2. Durch anpassen der Variablen OSS_SERVER, OSS_MIRROR, NONOSS_SERVER, NONOSS_MIRROR, UPDATE_SERVER und UPDATE_MIRROR kann dieses Skript auch für ältere und zukünftige openSUSE Versionen verwendet werden.
Hinweis: Dieses Skript ist für CentOS 6.x ausgelegt.
###########################################################################
## ##
## openSUSE Mirror Script ##
## ##
## Creation: 26.11.2004 ##
## Last Update: 20.10.2013 ##
## ##
## Copyright (c) 2004-2013 by Georg Kainzbauer <http://www.gtkdb.de> ##
## ##
## This program is free software; you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation; either version 2 of the License, or ##
## (at your option) any later version. ##
## ##
###########################################################################
#!/bin/bash
# openSUSE OSS mirror server and local mirror directory
OSS_SERVER=ftp-1.gwdg.de::pub/opensuse/distribution/12.2/repo/oss/
OSS_MIRROR=/var/ftp/pub/linux/opensuse12.2/oss/
# openSUSE Non-OSS mirror server and local mirror directory
NONOSS_SERVER=ftp-1.gwdg.de::pub/opensuse/distribution/12.2/repo/non-oss/
NONOSS_MIRROR=/var/ftp/pub/linux/opensuse12.2/non-oss/
# openSUSE Update mirror server and local mirror directory
UPDATE_SERVER=ftp-1.gwdg.de::pub/opensuse/update/12.2/
UPDATE_MIRROR=/var/ftp/pub/linux/opensuse12.2/update/
# Log file
LOGFILE=/var/log/opensuse_mirror.log
# Debug file (if you do not want to debug the download process set this option to "/dev/null")
DEBUGFILE=/var/log/opensuse_mirror.debug
# Who will be informed in case if anything goes wrong (if you do not want to be informed via mail, set this option to "")
MAILNOTIFY="root@localhost"
# Lock file
LOCK=/var/tmp/opensuse_mirror.lock
###################################################################
# NORMALLY THERE IS NO NEED TO CHANGE ANYTHING BELOW THIS COMMENT #
###################################################################
function log()
{
echo `date +%d.%m.%Y%t%H:%M:%S` " LOG:" $1 >>${LOGFILE}
}
function error()
{
echo `date +%d.%m.%Y%t%H:%M:%S` " ERROR:" $1 >>${LOGFILE}
if [ -n "$MAILNOTIFY" ] ; then
echo `date +%d.%m.%Y%t%H:%M:%S` " ERROR:" $1 | mail -s "ERROR while synchronizing openSUSE" $MAILNOTIFY
fi
echo $1 | grep "Lockfile" >/dev/null
if [ $? = 1 ] ; then
rm -f ${LOCK}
fi
exit 1
}
function status()
{
case "$1" in
0)
log "Synchronization completed."
;;
1)
error "RSYNC: Syntax or usage error."
;;
2)
error "RSYNC: Protocol incompatibility."
;;
3)
error "RSYNC: Errors selecting input/output files, dirs."
;;
4)
error "RSYNC: Requested action not supported: an attempt was made to manipulate 64-bit files on a platform that cannot support them; or an option was specified that is supported by the client and not by the server."
;;
5)
error "RSYNC: Error starting client-server protocol."
;;
6)
error "RSYNC: Daemon unable to append to log-file."
;;
10)
error "RSYNC: Error in socket I/O."
;;
11)
error "RSYNC: Error in file I/O."
;;
12)
error "RSYNC: Error in rsync protocol data stream."
;;
13)
error "RSYNC: Errors with program diagnostics."
;;
14)
error "RSYNC: Error in IPC code."
;;
20)
error "RSYNC: Received SIGUSR1 or SIGINT."
;;
21)
error "RSYNC: Some error returned by waitpid()."
;;
22)
error "RSYNC: Error allocating core memory buffers."
;;
23)
error "RSYNC: Partial transfer due to error."
;;
24)
error "RSYNC: Partial transfer due to vanished source files."
;;
25)
error "RSYNC: The --max-delete limit stopped deletions."
;;
30)
error "RSYNC: Timeout in data send/receive."
;;
*)
error "RSYNC: Unknown error $1."
;;
esac
}
if [ -f ${LOCK} ] ; then
error "Lockfile ${LOCK} exists."
fi
touch ${LOCK}
# Create local mirror directories if not exists
if [ ! -d ${OSS_MIRROR} ] ; then
log "Creating local openSUSE OSS mirror directory."
mkdir -p ${OSS_MIRROR}
fi
if [ ! -d ${NONOSS_MIRROR} ] ; then
log "Creating local openSUSE Non-OSS mirror directory."
mkdir -p ${NONOSS_MIRROR}
fi
if [ ! -d ${UPDATE_MIRROR} ] ; then
log "Creating local openSUSE Update mirror directory."
mkdir -p ${UPDATE_MIRROR}
fi
log "Starting openSUSE OSS download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${OSS_SERVER} ${OSS_MIRROR} >>${DEBUGFILE} 2>&1
status $?
log "Starting openSUSE Non-OSS download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${NONOSS_SERVER} ${NONOSS_MIRROR} >>${DEBUGFILE} 2>&1
status $?
log "Starting openSUSE Update download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${UPDATE_SERVER} ${UPDATE_MIRROR} >>${DEBUGFILE} 2>&1
status $?
rm -f ${LOCK}
exit 0
## ##
## openSUSE Mirror Script ##
## ##
## Creation: 26.11.2004 ##
## Last Update: 20.10.2013 ##
## ##
## Copyright (c) 2004-2013 by Georg Kainzbauer <http://www.gtkdb.de> ##
## ##
## This program is free software; you can redistribute it and/or modify ##
## it under the terms of the GNU General Public License as published by ##
## the Free Software Foundation; either version 2 of the License, or ##
## (at your option) any later version. ##
## ##
###########################################################################
#!/bin/bash
# openSUSE OSS mirror server and local mirror directory
OSS_SERVER=ftp-1.gwdg.de::pub/opensuse/distribution/12.2/repo/oss/
OSS_MIRROR=/var/ftp/pub/linux/opensuse12.2/oss/
# openSUSE Non-OSS mirror server and local mirror directory
NONOSS_SERVER=ftp-1.gwdg.de::pub/opensuse/distribution/12.2/repo/non-oss/
NONOSS_MIRROR=/var/ftp/pub/linux/opensuse12.2/non-oss/
# openSUSE Update mirror server and local mirror directory
UPDATE_SERVER=ftp-1.gwdg.de::pub/opensuse/update/12.2/
UPDATE_MIRROR=/var/ftp/pub/linux/opensuse12.2/update/
# Log file
LOGFILE=/var/log/opensuse_mirror.log
# Debug file (if you do not want to debug the download process set this option to "/dev/null")
DEBUGFILE=/var/log/opensuse_mirror.debug
# Who will be informed in case if anything goes wrong (if you do not want to be informed via mail, set this option to "")
MAILNOTIFY="root@localhost"
# Lock file
LOCK=/var/tmp/opensuse_mirror.lock
###################################################################
# NORMALLY THERE IS NO NEED TO CHANGE ANYTHING BELOW THIS COMMENT #
###################################################################
function log()
{
echo `date +%d.%m.%Y%t%H:%M:%S` " LOG:" $1 >>${LOGFILE}
}
function error()
{
echo `date +%d.%m.%Y%t%H:%M:%S` " ERROR:" $1 >>${LOGFILE}
if [ -n "$MAILNOTIFY" ] ; then
echo `date +%d.%m.%Y%t%H:%M:%S` " ERROR:" $1 | mail -s "ERROR while synchronizing openSUSE" $MAILNOTIFY
fi
echo $1 | grep "Lockfile" >/dev/null
if [ $? = 1 ] ; then
rm -f ${LOCK}
fi
exit 1
}
function status()
{
case "$1" in
0)
log "Synchronization completed."
;;
1)
error "RSYNC: Syntax or usage error."
;;
2)
error "RSYNC: Protocol incompatibility."
;;
3)
error "RSYNC: Errors selecting input/output files, dirs."
;;
4)
error "RSYNC: Requested action not supported: an attempt was made to manipulate 64-bit files on a platform that cannot support them; or an option was specified that is supported by the client and not by the server."
;;
5)
error "RSYNC: Error starting client-server protocol."
;;
6)
error "RSYNC: Daemon unable to append to log-file."
;;
10)
error "RSYNC: Error in socket I/O."
;;
11)
error "RSYNC: Error in file I/O."
;;
12)
error "RSYNC: Error in rsync protocol data stream."
;;
13)
error "RSYNC: Errors with program diagnostics."
;;
14)
error "RSYNC: Error in IPC code."
;;
20)
error "RSYNC: Received SIGUSR1 or SIGINT."
;;
21)
error "RSYNC: Some error returned by waitpid()."
;;
22)
error "RSYNC: Error allocating core memory buffers."
;;
23)
error "RSYNC: Partial transfer due to error."
;;
24)
error "RSYNC: Partial transfer due to vanished source files."
;;
25)
error "RSYNC: The --max-delete limit stopped deletions."
;;
30)
error "RSYNC: Timeout in data send/receive."
;;
*)
error "RSYNC: Unknown error $1."
;;
esac
}
if [ -f ${LOCK} ] ; then
error "Lockfile ${LOCK} exists."
fi
touch ${LOCK}
# Create local mirror directories if not exists
if [ ! -d ${OSS_MIRROR} ] ; then
log "Creating local openSUSE OSS mirror directory."
mkdir -p ${OSS_MIRROR}
fi
if [ ! -d ${NONOSS_MIRROR} ] ; then
log "Creating local openSUSE Non-OSS mirror directory."
mkdir -p ${NONOSS_MIRROR}
fi
if [ ! -d ${UPDATE_MIRROR} ] ; then
log "Creating local openSUSE Update mirror directory."
mkdir -p ${UPDATE_MIRROR}
fi
log "Starting openSUSE OSS download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${OSS_SERVER} ${OSS_MIRROR} >>${DEBUGFILE} 2>&1
status $?
log "Starting openSUSE Non-OSS download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${NONOSS_SERVER} ${NONOSS_MIRROR} >>${DEBUGFILE} 2>&1
status $?
log "Starting openSUSE Update download process."
echo ">>>>>" `date +%d.%m.%Y%t%H:%M:%S` "<<<<<" >>${DEBUGFILE}
rsync -avzH --delete --progress --delay-updates --timeout=300 ${UPDATE_SERVER} ${UPDATE_MIRROR} >>${DEBUGFILE} 2>&1
status $?
rm -f ${LOCK}
exit 0
Damit die Logdateien nicht zu groß werden, sollten Sie Logrotate anweisen die Logdateien regelmäßig zu archivieren und nach einer gewissen Zeit zu löschen. Dazu erstellen Sie einfach die Datei /etc/logrotate.d/opensuse_mirror.
[root@centos6 ~]# vi /etc/logrotate.d/opensuse_mirror
Fügen Sie in diese Datei die folgenden Zeilen ein. Dadurch wird die Logdatei /var/log/opensuse_mirror.log monatlich und die Logdatei /var/log/opensuse_mirror.debug wöchentlich archiviert. Von beiden Logdateien werden nur die letzten drei Archivdateien vorgehalten. Ältere Archive werden automatisch gelöscht.
/var/log/opensuse_mirror.log {
monthly
rotate 3
compress
delaycompress
missingok
notifempty
}
/var/log/opensuse_mirror.debug {
weekly
rotate 3
compress
delaycompress
missingok
notifempty
}
monthly
rotate 3
compress
delaycompress
missingok
notifempty
}
/var/log/opensuse_mirror.debug {
weekly
rotate 3
compress
delaycompress
missingok
notifempty
}
Dieser Eintrag wurde am 05.09.2012 erstellt und zuletzt am 05.04.2015 bearbeitet.
Direkter Link zu dieser Seite: http://www.gtkdb.de/index_33_1821.html
[ Zur Startseite ] [ Zur Kategorie ]
© 2004-2021 by Georg Kainzbauer