blob: 9a44f50459cef7f9394b8be488db35e39790a429 (
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
|
#!/bin/sh
# -*- coding: utf-8 -*-
source local_config
function run_python_cmd {
env \
mirror=${mirror} \
mirrorpath=${mirrorpath} \
logname=${logname} \
tempdir=${tempdir} \
archdb=${archdb} \
repodir=${repodir} \
blacklist=${blacklist} \
whitelist=${whitelist} \
pending=${pending} \
rsync_blacklist=${rsync_blacklist} \
repo_list=${repo_list} \
dir_list=${dir_list} \
arch_list=${arch_list} \
other=${other} \
output=${output} \
debug=${debug} \
$1
}
source libremessages
|