Commit fe1aa321 authored by Dmitrii Safronov's avatar Dmitrii Safronov Committed by Dmitrii Safronov
Browse files

chore: linter

parent adac1b88
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
- name: Enable gitlab service
  ansible.builtin.systemd:
    state: started
    enabled: yes
    masked: no
    daemon_reload: yes
    enabled: true
    masked: false
    daemon_reload: true
    name: gitlab-runsvdir
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@

# Ubuntu
- name: Perform specific setup for Ubuntu, Debian & Linux Mint
  include_tasks: ubuntu/main.yml
  ansible.builtin.include_tasks: ubuntu/main.yml
  when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian' or ansible_distribution == 'Linux Mint'
  tags: ubuntu
+4 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

- name: Install a list of packages
  ansible.builtin.apt:
    update_cache: yes
    update_cache: true
    state: present
    pkg:
    - curl
@@ -15,7 +15,7 @@

- name: Install Debian archive keyring
  ansible.builtin.apt:
    update_cache: yes
    update_cache: true
    state: present
    pkg:
    - debian-archive-keyring
@@ -35,7 +35,7 @@

- name: Install gitlab-ce
  ansible.builtin.apt:
    update_cache: yes
    update_cache: true
    state: present
    pkg:
    - gitlab-ce
@@ -56,7 +56,7 @@
    owner: root
    group: root
    mode: '0640'
    backup: yes
    backup: true
  register: gitlab_config
  notify: Reconfigure gitlab