28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
[ -e /etc/sysconfig/autoport ] && . /etc/sysconfig/autoport
|
|
|
|
function clean() {
|
|
dir=$1
|
|
arch=$2
|
|
find $dir/RPM/RPMS/$arch/ -maxdepth 1 -ctime +30 -exec rm -rf {} \;
|
|
find $dir/RPM/RPMS/noarch/ -maxdepth 1 -ctime +30 -exec rm -rf {} \;
|
|
find $dir/RPM/BUILD/ -maxdepth 1 -ctime +30 -exec rm -rf {} \;
|
|
find $dir/RPM/SOURCES/ -maxdepth 1 -ctime +120 -exec rm -rf {} \;
|
|
find $dir/RPM/SRPMS/ -maxdepth 1 -ctime +90 -exec rm -rf {} \;
|
|
}
|
|
|
|
for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do
|
|
if [ "${AUTOPORT_CHROOT[$i]}" ]; then
|
|
a=${AUTOPORT_CHROOT[$i]}
|
|
clean /var/autoport/$a/usr/src ${AUTOPORT_ARCH[$i]}
|
|
[ -e /var/autoport/$a/var/autodist/RPM/RPMS/$arch ] && \
|
|
clean /var/autoport/$a/var/autodist ${AUTOPORT_ARCH[$i]}
|
|
[ -e /var/autoport/$a/var/tmp/autodist ] && \
|
|
find /var/autoport/$a/var/tmp/autodist/ -maxdepth 1 -ctime +25 -exec rm -rf {} \;
|
|
find /var/autoport/$a/tmp/ -maxdepth 1 -ctime +25 -exec rm -rf {} \;
|
|
elif [ "${AUTOPORT_UPDATE[$i]}" ]; then
|
|
clean /var/autodist ${AUTOPORT_ARCH[$i]}
|
|
find /var/tmp/autodist/ -maxdepth 1 -ctime +25 -exec rm -rf {} \;
|
|
fi
|
|
done
|