summaryrefslogtreecommitdiff
path: root/machine_profiles
diff options
context:
space:
mode:
Diffstat (limited to 'machine_profiles')
-rwxr-xr-xmachine_profiles32
1 files changed, 32 insertions, 0 deletions
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