blob: 64b6e37ea710b23ec73683448c7fa0c691b0b100 (
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
|
import datetime;
include('el9x.tpl')
config_opts['root'] = 'el9x'
config_opts['resultdir'] = "/var/lib/mock/el9x"
config_opts['module_enable'] = ['redis:remi-7.0']
nn = datetime.datetime.now().strftime("%Y%m%d%H%M%S");
config_opts['macros']['%_module_build']="1"
config_opts['macros']['%_module_name']="redis"
config_opts['macros']['%_module_stream']="remi-7.0"
config_opts['macros']['%_module_version']="90000" + nn;
config_opts['macros']['%_module_context']="00000000"
config_opts['macros']['%modularitylabel']="%{_module_name}:%{_module_stream}:%{_module_version}:%{_module_context}"
config_opts['yum.conf'] += """
[result-el9x]
name=result-el9x
baseurl=file:/var/lib/mock/el9x/
metadata_expire=15
enabled=1
"""
|