Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.yml « tasks « gitlab « roles « demo-setup « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 564e5dd1a008e15425c039f627b4d0e8986dc765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- name: Set GitLab.rb file
  become: yes
  template:
    src: gitlab-gitlab.rb.j2
    dest: /etc/gitlab/gitlab.rb

- name: Reconfigure GitLab
  become: yes
  command:
    cmd: gitlab-ctl reconfigure
  
- name: Restart GitLab
  become: yes
  command:
    cmd: gitlab-ctl restart

- name: Rake Gitaly verification
  become: yes
  command:
    cmd: gitlab-rake gitlab:gitaly:check