diff options
author | Mark Phippard <markphip@gmail.com> | 2023-01-06 00:21:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 00:21:34 +0300 |
commit | a9a7a25d60585ce2145374ec6825cbdc7f16cb90 (patch) | |
tree | bf8ce43db5d4f9c5cc2fc15f67b8a3fa5853ee7b | |
parent | c546f4bf8c462247c954ee3b549e63db2fc687dd (diff) |
Install gawk RPM (#380)
* Install gawk RPM
This script requires awk and it may not be available on a
minimal distro like Mariner
* Bump version number
-rw-r--r-- | src/common-utils/devcontainer-feature.json | 2 | ||||
-rw-r--r-- | src/common-utils/main.sh | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/common-utils/devcontainer-feature.json b/src/common-utils/devcontainer-feature.json index 8d1ed82..33cd19d 100644 --- a/src/common-utils/devcontainer-feature.json +++ b/src/common-utils/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "common-utils", - "version": "2.0.3", + "version": "2.0.4", "name": "Common Utilities", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/common-utils", "description": "Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-root user.", diff --git a/src/common-utils/main.sh b/src/common-utils/main.sh index b6793d6..2021485 100644 --- a/src/common-utils/main.sh +++ b/src/common-utils/main.sh @@ -146,6 +146,7 @@ install_debian_packages() { # RedHat / RockyLinux / CentOS / Fedora packages install_redhat_packages() { local package_list="\ + gawk \ openssh-clients \ gnupg2 \ iproute \ |