summaryrefslogtreecommitdiffstats
path: root/packaging/installer/install-required-packages.sh
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-03-06 10:22:12 -0500
committerGitHub <noreply@github.com>2020-03-06 10:22:12 -0500
commit76cff7734233ff701e40e6c7b21491e0bed4a06d (patch)
tree2b99e930b57286e52f63b97108cfd58aab5e7f6f /packaging/installer/install-required-packages.sh
parentd31707e6a400f2dfa4dca93b16e562e2c3f4a3db (diff)
Fixed dependency names for Arch Linux. (#8334)
* Fix package names for Archlinux. * Use a specific implementation of netcat on Arch. * Use install-required-pacakges.sh from local branch instead of master. * Use local copy of kickstart.sh instead of downloading it.
Diffstat (limited to 'packaging/installer/install-required-packages.sh')
-rwxr-xr-xpackaging/installer/install-required-packages.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/packaging/installer/install-required-packages.sh b/packaging/installer/install-required-packages.sh
index 9bd566db92..60b1ff8e3c 100755
--- a/packaging/installer/install-required-packages.sh
+++ b/packaging/installer/install-required-packages.sh
@@ -752,6 +752,7 @@ declare -A pkg_netcat=(
['rhel']="nmap-ncat"
['suse']="netcat-openbsd"
['clearlinux']="sysadmin-basic"
+ ['arch']="gnu-netcat"
['default']="netcat"
# exceptions
@@ -948,6 +949,7 @@ declare -A pkg_lz4=(
['suse']="liblz4-devel"
['gentoo']="app-arch/lz4"
['clearlinux']="devpkg-lz4"
+ ['arch']="lz4"
['default']="lz4-devel"
)
@@ -967,6 +969,7 @@ declare -A pkg_openssl=(
['ubuntu']="libssl-dev"
['suse']="libopenssl-devel"
['clearlinux']="devpkg-openssl"
+ ['arch']="openssl"
['default']="openssl-devel"
)