Skip to content

Commit

Permalink
Merge pull request #277 from bostjan/add-awk-to-suse-installer
Browse files Browse the repository at this point in the history
install/dev-tools: Add `awk` to OpenSUSE installer(s)
  • Loading branch information
bostjan authored Sep 8, 2024
2 parents cfd48a5 + 4faec8c commit 6d39907
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 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
24 changes: 12 additions & 12 deletions install/install-snoopy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -261,19 +261,19 @@ _installPackages()
#
#

PROGRAM_NAMES="find gcc gzip make ps socat tar wget"
PACKAGE_NAMES_ALPINE=" gcc gzip make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH=" gcc gzip make procps socat tar wget"
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"
PROGRAM_NAMES=" find gcc gzip make ps socat tar wget"
PACKAGE_NAMES_ALPINE=" gcc gzip make procps socat tar wget alpine-sdk"
PACKAGE_NAMES_ARCH=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_DEBIAN=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_REDHAT=" gcc gzip make procps socat tar wget"
PACKAGE_NAMES_SUSE="awk 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 6d39907

Please sign in to comment.