From c62885a59b5fbe40cf62a629dd2295f1161831e1 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 9 Nov 2020 11:49:21 +0100 Subject: install: support configuration profiles --- machine_profiles | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 machine_profiles (limited to 'machine_profiles') diff --git a/machine_profiles b/machine_profiles new file mode 100755 index 0000000..eb7b06d --- /dev/null +++ b/machine_profiles @@ -0,0 +1,32 @@ +#!/usr/bin/python3 + +# print a comma-separate list of tags for system + +import socket +import sys + +tags = { + "desktop" : [ + "daenerys", + "shion", + "diziet", + "cirno", + ], +} + +hostname = socket.getfqdn() +if hostname.startswith('localhost'): + # try gethostname, it might sometimes return a real name + # when FQDN is misconfigured + hostname = socket.gethostname() + +if hostname.startswith('localhost'): + sys.stderr.write('System hostname "%s" starts with localhost, ' + 'that is probably wrong\n', hostname) + +for t, systems in tags.items(): + for s in systems: + if (hostname.startswith(s) and + (len(s) == len(hostname) or hostname[len(s)] == '.')): + print(t) + break -- cgit v1.2.3