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
44
45
|
import yaml, os, sys
from Cheetah.Template import Template
def get_file_list(root, arch):
files = []
dirs = os.listdir(os.path.join(root, 'roles'))
for dir in dirs:
var_dir = os.path.join(root, 'roles', dir, 'vars')
for name in ['main.yml', arch + r'.yml']:
if os.path.exists(os.path.join(var_dir, name)):
files.append(os.path.join(var_dir, name))
return files
def get_packages_name_list(file_list):
package_name_list = []
for file in file_list:
datas = yaml.load(open(file))
for key, value in datas.items():
if not key.endswith("packages") and not key.endswith("packages_noarch"):
continue
if not value:
continue
if value not in package_name_list:
package_name_list += value
return package_name_list
def generate_download_script(root, arch, tmpl):
package_name_list = get_packages_name_list(get_file_list(root, arch))
tmpl = Template(file=tmpl, searchList={'packages':package_name_list})
with open('install_packages.sh', 'w') as f:
f.write(tmpl.respond())
if __name__=='__main__':
# generate_download_script('ansible', 'Debian', 'Debian.tmpl')
generate_download_script(sys.argv[1], sys.argv[2], sys.argv[3])
|