summaryrefslogtreecommitdiffstats
path: root/old/bin/genid
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-07-16 23:22:30 +0200
committertv <tv@shackspace.de>2015-07-16 23:22:30 +0200
commit57c520b722f25f384301118046bf9cf182d4edd7 (patch)
tree57983c04bb49fe0375300861111a61cede545794 /old/bin/genid
parent447c63edbd403abf026800d10594ed037b4304e9 (diff)
Goodbye old world, and thanks for all the fish!
Diffstat (limited to 'old/bin/genid')
-rwxr-xr-xold/bin/genid11
1 files changed, 0 insertions, 11 deletions
diff --git a/old/bin/genid b/old/bin/genid
deleted file mode 100755
index 8e224074..00000000
--- a/old/bin/genid
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /bin/sh
-# usage: genid NAME
-set -euf
-name=$1
-hash=$(printf %s "$name" | sha1sum | cut -d\ -f1 | tr a-f A-F)
-echo "
- min=2^16 # bigger than nobody and nogroup, see <nixos/modules/misc/ids.nix>
- max=2^32 # see 2^(8*sizeof(uid_t))
- ibase=16
- ($hash + min) % max
-" | bc