summary refs log tree commit diff
path: root/nixos/modules/services/misc/gitlab.xml
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-08-04 02:08:26 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2016-08-04 02:29:45 +0200
commitd8fd06641ac9b7ce131afd5eaa626d60c8645b21 (patch)
tree2194a39263e4a048730f951a791b72aea01e6750 /nixos/modules/services/misc/gitlab.xml
parentc39b6025d8fa8a77b6ac89e89400c595bf2bd2f0 (diff)
downloadnixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar.gz
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar.bz2
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar.lz
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar.xz
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.tar.zst
nixlib-d8fd06641ac9b7ce131afd5eaa626d60c8645b21.zip
gitlab module: split up gitlab-runner script
The name gitlab-runner clashes with a component of Gitlab CI with the
same name and only confuses people. It's now called gitlab-bundle and
a convenience-script gitlab-rake for easier invocation of rake tasks
was added. This was the primary use case of gitlab-runner.
Diffstat (limited to 'nixos/modules/services/misc/gitlab.xml')
-rw-r--r--nixos/modules/services/misc/gitlab.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/nixos/modules/services/misc/gitlab.xml b/nixos/modules/services/misc/gitlab.xml
index b630fe421130..30bc39d25683 100644
--- a/nixos/modules/services/misc/gitlab.xml
+++ b/nixos/modules/services/misc/gitlab.xml
@@ -80,21 +80,21 @@ options for the <literal>services.gitlab</literal> module.</para>
 
 <section><title>Maintenance</title>
 
-<para>You can run all Gitlab related commands like rake tasks with
-<literal>gitlab-runner</literal> which will be available on the system
-when gitlab is enabled. You will have to run the commands as the user that
-you configured to run gitlab.</para>
+<para>You can run Gitlab's rake tasks with <literal>gitlab-rake</literal>
+which will be available on the system when gitlab is enabled. You will
+have to run the command as the user that you configured to run gitlab
+with.</para>
 
-<para>For instance, to backup a Gitlab instance:
+<para>For example, to backup a Gitlab instance:
 
 <programlisting>
-$ sudo -u git -H gitlab-runner exec rake gitlab:backup:create
+$ sudo -u git -H gitlab-rake gitlab:backup:create
 </programlisting>
 
 A list of all availabe rake tasks can be obtained by running:
 
 <programlisting>
-$ sudo -u git -H gitlab-runner exec rake -T
+$ sudo -u git -H gitlab-rake -T
 </programlisting>
 </para>