Initial Oracle support

This commit is contained in:
Mike Reeves
2023-07-12 14:59:36 -04:00
parent 6f81e234cd
commit 50103aebb3
2 changed files with 10 additions and 33 deletions

View File

@@ -31,7 +31,7 @@ commonpkgs:
- python3-rich - python3-rich
{% endif %} {% endif %}
{% if grains.oscodename == 'focal' %} {% if grains.oscodename == 'focal' %}
# since Ubuntu requires and internet connection we can use pip to install modules # since Ubuntu requires and internet connection we can use pip to install modules
python3-pip: python3-pip:
pkg.installed pkg.installed
@@ -42,9 +42,10 @@ python-rich:
- target: /usr/local/lib/python3.8/dist-packages/ - target: /usr/local/lib/python3.8/dist-packages/
- require: - require:
- pkg: python3-pip - pkg: python3-pip
{% endif %}
{% endif %} {% endif %}
{% elif GLOBALS.os == 'Rocky' %} {% if GLOBALS.os_family == 'RedHat' %}
commonpkgs: commonpkgs:
pkg.installed: pkg.installed:
- skip_suggestions: True - skip_suggestions: True
@@ -56,7 +57,11 @@ commonpkgs:
- net-tools - net-tools
- curl - curl
- sqlite - sqlite
{% if GLOBALS.os == 'CentOS Stream' %}
- MariaDB-devel
{% else %}
- mariadb-devel - mariadb-devel
{% endif %}
- python3-dnf-plugin-versionlock - python3-dnf-plugin-versionlock
- nmap-ncat - nmap-ncat
- yum-utils - yum-utils
@@ -72,34 +77,6 @@ commonpkgs:
- python3-watchdog - python3-watchdog
- python3-packaging - python3-packaging
- unzip - unzip
{% elif GLOBALS.os == 'CentOS Stream' %}
commonpkgs:
pkg.installed:
- skip_suggestions: True
- pkgs:
- wget
- jq
- tcpdump
- httpd-tools
- net-tools
- curl
- sqlite
- MariaDB-devel
- python3-dnf-plugin-versionlock
- nmap-ncat
- yum-utils
- device-mapper-persistent-data
- lvm2
- openssl
- git
- python3-docker
- python3-m2crypto
- rsync
- python3-rich
- python3-pyyaml
- python3-packaging
- unzip
- fuse - fuse
- fuse-libs - fuse-libs
- fuse-overlayfs - fuse-overlayfs

View File

@@ -49,9 +49,9 @@ dockerheldpackages:
pkg.installed: pkg.installed:
- pkgs: - pkgs:
- containerd.io: 1.6.21-3.1.el9 - containerd.io: 1.6.21-3.1.el9
- docker-ce: 24.0.3-1.el9 - docker-ce: 24.0.4-1.el9
- docker-ce-cli: 24.0.3-1.el9 - docker-ce-cli: 24.0.4-1.el9
- docker-ce-rootless-extras: 24.0.3-1.el9 - docker-ce-rootless-extras: 24.0.4-1.el9
- hold: True - hold: True
- update_holds: True - update_holds: True
{% endif %} {% endif %}