Commit 76631894f74ed6944d6d621871d4dd145d592c00
1 parent
e709b35b
Exists in
master
and in
1 other branch
Adicionando habilitar sign_up
Showing
1 changed file
with
6 additions
and
2 deletions
Show diff stats
script/instalacaoGitlab.sh
... | ... | @@ -55,7 +55,11 @@ sudo echo "unicorn['port'] = 3456" >> /etc/gitlab/gitlab.rb |
55 | 55 | sudo echo "gitlab_rails['internal_api_url'] = 'http://localhost:3456'" >> /etc/gitlab/gitlab.rb |
56 | 56 | sudo echo "external_url \"http://$IP_GITLAB\"" >> /etc/gitlab/gitlab.rb |
57 | 57 | |
58 | -# Adicionando integracao com redmine | |
58 | + | |
59 | +# Habilitar sign_up | |
60 | +sudo echo "gitlab_rails['gitlab_signup_enabled'] = \"true\"" >> /etc/gitlab/gitlab.rb | |
61 | + | |
62 | +# Adicionar integracao com redmine | |
59 | 63 | sudo echo "gitlab_rails['issues_tracker_redmine'] = 'redmine'" >> /etc/gitlab/gitlab.rb |
60 | 64 | sudo echo "gitlab_rails['issues_tracker_redmine_title'] = 'Redmine'" >> /etc/gitlab/gitlab.rb |
61 | 65 | sudo echo "gitlab_rails['issues_tracker_redmine_project_url'] = 'http://$IP_REDMINE/projects/:issues_tracker_id'" >> /etc/gitlab/gitlab.rb |
... | ... | @@ -79,4 +83,4 @@ sudo gitlab-ctl restart |
79 | 83 | # Mostrando os dados do gitlab |
80 | 84 | echo "Sucesso! Para acessar o gitlab, abra no navegador o ip $IP_GITLAB" |
81 | 85 | echo "Usuario: root" |
82 | -echo "Senha: 5iveL!fe" | |
83 | 86 | \ No newline at end of file |
87 | +echo "Senha: 5iveL!fe" | ... | ... |