Install gcc-g++

This commit is contained in:
Anthony Rose 2020-11-11 22:04:20 +00:00
parent ff48eec5ea
commit 87747e8590

View file

@ -1,5 +1,15 @@
--- ---
# The zypper module requires python-xml on openSUSE. # The zypper module requires python-xml on openSUSE.
- name: Install CLI patterns
become: true
zypper:
name: '{{ patterns }}'
state: present
type: pattern
vars:
patterns:
- devel_C_C++
- devel_rpm_build
- name: Install CLI packages - name: Install CLI packages
become: true become: true
zypper: zypper:
@ -13,6 +23,7 @@
- bc - bc
- bind-utils - bind-utils
- clang - clang
- gcc-g++
- git - git
- gpg2 - gpg2
- libstdc++-devel - libstdc++-devel
@ -31,13 +42,3 @@
- tmux - tmux
- vim - vim
- zsh - zsh
- name: Install CLI patterns
become: true
zypper:
name: '{{ patterns }}'
state: present
type: pattern
vars:
patterns:
- devel_C_C++
- devel_rpm_build