]> git.phdru.name Git - ansible.git/commitdiff
Fix(dev-packages): Do not install `git`
authorOleg Broytman <phd@phdru.name>
Tue, 3 Sep 2019 00:02:02 +0000 (03:02 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 3 Sep 2019 00:02:02 +0000 (03:02 +0300)
I need it less frequently even on developer workstations.

playbooks/roles/dev-packages/tasks/main.yml

index 076a1c44c1366fb1d140cccd038d3300e6a2ae32..0dc8de1af8c524ec5133f30ef5f95fd38b993203 100644 (file)
@@ -5,8 +5,7 @@
     autoremove: yes
     cache_valid_time: 3600
     install_recommends: no
-    name: ['g++', 'gcc', 'git',
-           'libexpat1', 'libffi6',
+    name: ['g++', 'gcc', 'libexpat1', 'libffi6',
            'libgdbm{% if ansible_facts.distribution_major_version == "9" %}3{% elif ansible_facts.distribution_major_version == "10" %}6{% endif %}',
            'libgmp10',
            'liblzma5', 'libmpdec2', 'libreadline5', 'libreadline7',
@@ -20,7 +19,7 @@
   become: true
   dnf:
     name: ['expat', 'gcc', 'gcc-c++',
-           'gdbm', 'gdbm-libs', 'git', 'gmp',
+           'gdbm', 'gdbm-libs', 'gmp',
            'libffi', 'lzma-sdk', 'make', 'mpdecimal',
            'openssl', 'patch', 'readline', 'sqlite', 'zlib',
           ]