Skip to content

Commit

Permalink
install/dev-tools: Add awk to OpenSUSE installer(s)
Browse files Browse the repository at this point in the history
CI stopped working for Tumbleweed (their rolling release version) because it was
missing `awk` all of the sudden.
  • Loading branch information
bostjan committed Sep 8, 2024
1 parent 0ca7e59 commit 80a42df
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions dev-tools/install-dev-software.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ BOOTSTRAP_GIT_REPO_REQUIRED="false"
# NOTICE: Certain changes here must potentially be reflected
# in the ../install/install-snoopy.sh file too.
#
PROGRAM_NAMES="autoconf aclocal curl diff file find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl diffutils file gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl diffutils file gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake curl diffutils file findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
PROGRAM_NAMES="autoconf aclocal curl diff file find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl diffutils file gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl diffutils file gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl diffutils file gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake awk curl diffutils file findutils gcc git gzip hostname libtool m4 make procps socat tar wget"



Expand Down
12 changes: 6 additions & 6 deletions install/install-snoopy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,12 +268,12 @@ PACKAGE_NAMES_DEBIAN=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_REDHAT=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_SUSE="findutils gcc gzip make procps socat tar wget"
if [ "$SNOOPY_SOURCE_TYPE" == "git" ]; then
PROGRAM_NAMES="autoconf aclocal curl find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake curl findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
PROGRAM_NAMES="autoconf aclocal curl find gcc git gzip hostname libtoolize m4 make ps socat tar wget"
PACKAGE_NAMES_ALPINE="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH="autoconf automake curl gcc git gzip inetutils libtool m4 make procps socat tar wget"
PACKAGE_NAMES_DEBIAN="autoconf automake curl gcc git gzip libtool m4 make procps socat tar wget"
PACKAGE_NAMES_REDHAT="autoconf automake curl gcc git gzip hostname libtool m4 make procps socat tar wget"
PACKAGE_NAMES_SUSE="autoconf automake awk curl findutils gcc git gzip hostname libtool m4 make procps socat tar wget"
fi

if _areAllRequiredProgramsPresent "$PROGRAM_NAMES"; then
Expand Down

0 comments on commit 80a42df

Please sign in to comment.