From e3d4d9906a96c478b9e9264a576eca39ecdef9a3 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Tue, 21 Sep 2021 03:19:59 -0700 Subject: [PATCH] Update README --- README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 969cd7a..c5c1ab3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Gitlab Updater +# [Gitlab Updater](https://git.codingallnight.com/chris/gitlab-updater) This tool upgrades GitLab Omnibus to the most recent patch version of the previous minor version. GitLab maintains security fixes for the 3 most recent minor versions, but the latest minor version frequently has regressions. @@ -37,6 +37,21 @@ APT cache is stale; updating... Would upgrade from 10.0.7-ce.0 to 10.1.2-ce.0 ``` +### Making Tool Globally Executable + +The tool can be made available to multiple users by deploying it to the `/usr/local/bin/` directory on your server. + +```sh +$ sudo mv gitlab-updater/update-gitlab /usr/local/bin/update-gitlab +$ sudo chmod +x /usr/local/bin/update-gitlab +``` + +You can also create a symlink to make the tool executable under multiple names. + +```sh +$ ln -s /usr/local/bin/update-gitlab /usr/local/bin/gitlab-update +``` + [_modeline]: # ( vi: set ts=4 sw=4 et wrap ft=markdown: ) -- GitLab