summaryrefslogtreecommitdiff
path: root/config/scripts/license_management/postinst
diff options
context:
space:
mode:
Diffstat (limited to 'config/scripts/license_management/postinst')
-rwxr-xr-xconfig/scripts/license_management/postinst14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/scripts/license_management/postinst b/config/scripts/license_management/postinst
new file mode 100755
index 0000000..da63d3b
--- /dev/null
+++ b/config/scripts/license_management/postinst
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+PROGNAME=$(basename "$0")
+
+error_exit()
+{
+ echo "${PROGNAME}: ${1:-"Unknown Error"}" 1>&2
+ exit 1
+}
+
+ln -s /opt/gitlab/bin/license_management /usr/local/bin/license_management
+echo "Thank you for installing license_management!"
+
+exit 0