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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/usr/bin/env python3
# Copyright (C) Catalyst.Net Ltd 2019
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
Manage dependencies and bootstrap environments for Samba.
CLI script to render bootstrap.sh/Dockerfile/Vagrantfile.
Author: Joe Guo <joeg@catalyst.net.nz>
"""
import io
import os
import logging
import argparse
from config import DISTS, VAGRANTFILE, OUT
logging.basicConfig(level='INFO')
log = logging.getLogger(__file__)
def render(dists):
"""Render files for all dists"""
for dist, config in dists.items():
home = config['home']
os.makedirs(home, exist_ok=True)
for key in ['bootstrap.sh', 'locale.sh', 'packages.yml', 'Dockerfile']:
path = os.path.join(home, key)
log.info('%s: render "%s" to %s', dist, key, path)
with io.open(path, mode='wt', encoding='utf8') as fp:
fp.write(config[key])
if path.endswith('.sh'):
os.chmod(path, 0o755)
key = 'Vagrantfile'
path = os.path.join(OUT, key)
log.info('%s: render "%s" to %s', dist, key, path)
with io.open(path, mode='wt', encoding='utf8') as fp:
fp.write(VAGRANTFILE)
def main():
parser = argparse.ArgumentParser(
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
description=('Render templates with samba dependencies '
'to bootstrap multiple distributions.'))
parser.add_argument(
'-r', '--render', action='store_true', help='Render templates')
args = parser.parse_args()
if args.render:
render(DISTS)
else:
parser.print_help()
if __name__ == '__main__':
main()
|