summaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorJoe Guo <joeg@catalyst.net.nz>2019-02-18 12:31:28 +1300
committerAndrew Bartlett <abartlet@samba.org>2019-02-21 04:09:20 +0100
commit3737518afeaf26bbb0afa534a453d19e92d923cd (patch)
tree8de4e6100f268476ec5c86035b59b3681c6a484b /bootstrap
parent3803f87f4776b3729d8033cf6ae09120fa4f3c54 (diff)
downloadsamba-3737518afeaf26bbb0afa534a453d19e92d923cd.tar.gz
bootstrap/template.py: add cli to render templates
- bootstrap for each dist - Dockerfile for each dist - Vagrantfile all in one Signed-off-by: Joe Guo <joeg@catalyst.net.nz> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap/template.py72
1 files changed, 72 insertions, 0 deletions
diff --git a/bootstrap/template.py b/bootstrap/template.py
new file mode 100755
index 00000000000..48c008c53ed
--- /dev/null
+++ b/bootstrap/template.py
@@ -0,0 +1,72 @@
+#!/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 ['packages.yml', 'bootstrap.sh', '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])
+
+ 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()