diff --git a/README.md b/README.md index 969cd7adb325c25274e5025e5ebf4196aa8b29eb..c5c1ab3385c289ff1ed37e4531fa4b2981ef64b6 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: )