blob: d15f736cc3f755cefa59c9b2ad2aeb5b1622aa7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/bin/bash
# -*- coding: utf-8 -*-
source config.sh
function mkrsexclude {
local error=1
while ${error}; do
run_python_cmd "filter.py"
error=$?
done
}
msg "Cleaning $tempdir"
stdnull "rm -r $tempdir/* "
msg "Generating exclude list for rsync"
mkrsexclude
msg "Syncing repos without delete"
# rsync_update_command does not sync db or abs
${rsync_update_command} --exclude-from=${rsync_blacklist} \
${mirror}${mirropath}/{$(echo ${repo_list} | tr ':' ','),\
$(echo ${dir_list} | tr ':' ',')} ${repodir}
msg "Syncing each repo and cleaning"
msg2 "Remove pending files"
stdnull "rm -rf ${pending}*"
for repo in $(echo ${repo_list} | tr ':' ' '); do
for arch in $(echo ${arch_list} | tr ':' ' '); do
msg2 "Syncing ${repo} ${arch}"
cmd=$(echo ${rsync_post_command} --exclude-from=${rsync_blacklist} \
${mirror}${mirropath}/${repo} ${repodir}/${repo})
plain "${cmd}"
${cmd}
msg2 "Cleaning ${repo} ${arch}"
# This also generates pending lists
run_python_cmd "clean_repo.py -b ${repodir}/${repo}/os/${arch}/${repo}.db.tar.gz -d ${repodir}/${repo}/os/${arch}/"
done
done
msg "Checking licenses"
get_license.sh
|