summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-09-13 23:12:21 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-13 23:12:21 +0200
commitb3a88a0fdc062f11d2580e361296865acdba4973 (patch)
tree9af6a3c9c5984e8a9dc5dcc9880aa9705b5f12ee
parente19c1f71d3a6d6b5be638c4f1fb5c9d2401e04be (diff)
parentdab09316ebbef585009bf7cc33afcabec7804d64 (diff)
downloadgitlab-ce-b3a88a0fdc062f11d2580e361296865acdba4973.tar.gz
Merge pull request #7528 from exromany/patch-1
Update user_management.md
-rw-r--r--doc/raketasks/user_management.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/raketasks/user_management.md b/doc/raketasks/user_management.md
index eb9eebb4b4a..3c67753ad28 100644
--- a/doc/raketasks/user_management.md
+++ b/doc/raketasks/user_management.md
@@ -7,7 +7,7 @@
sudo gitlab-rake gitlab:import:user_to_projects[username@domain.tld]
# installation from source or cookbook
-bundle exec rake gitlab:import:user_to_projects[username@domain.tld]
+bundle exec rake gitlab:import:user_to_projects[username@domain.tld] RAILS_ENV=production
```
## Add all users to all projects
@@ -21,7 +21,7 @@ Notes:
sudo gitlab-rake gitlab:import:all_users_to_all_projects
# installation from source or cookbook
-bundle exec rake gitlab:import:all_users_to_all_projects
+bundle exec rake gitlab:import:all_users_to_all_projects RAILS_ENV=production
```
## Add user as a developer to all groups
@@ -31,7 +31,7 @@ bundle exec rake gitlab:import:all_users_to_all_projects
sudo gitlab-rake gitlab:import:user_to_groups[username@domain.tld]
# installation from source or cookbook
-bundle exec rake gitlab:import:user_to_groups[username@domain.tld]
+bundle exec rake gitlab:import:user_to_groups[username@domain.tld] RAILS_ENV=production
```
## Add all users to all groups
@@ -45,5 +45,5 @@ Notes:
sudo gitlab-rake gitlab:import:all_users_to_all_groups
# installation from source or cookbook
-bundle exec rake gitlab:import:all_users_to_all_groups
+bundle exec rake gitlab:import:all_users_to_all_groups RAILS_ENV=production
```