diff options
author | Alexandre Flament <alex@al-f.net> | 2021-03-04 11:19:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-04 11:19:05 +0100 |
commit | 6ba37777f732d0538be342511e68494d75e3627b (patch) | |
tree | 022c5364138a617bc657a44147e2ed2827f29635 /utils/lxc.sh | |
parent | d26261c5abe65c4c883021d7e2e700906f6b269c (diff) | |
parent | c355bc348103c42b315ddd7160bc60871af55063 (diff) | |
download | searxng-6ba37777f732d0538be342511e68494d75e3627b.tar.gz searxng-6ba37777f732d0538be342511e68494d75e3627b.zip |
Merge pull request #2623 from return42/fix-centos7
[fix] add package `which` to CentOS-7 boilerplate
Diffstat (limited to 'utils/lxc.sh')
-rwxr-xr-x | utils/lxc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lxc.sh b/utils/lxc.sh index d2dd1a338..30936e9b1 100755 --- a/utils/lxc.sh +++ b/utils/lxc.sh @@ -58,7 +58,7 @@ echo 'Set disable_coredump false' >> /etc/sudo.conf # shellcheck disable=SC2034 centos7_boilerplate=" yum update -y -yum install -y git curl wget hostname sudo +yum install -y git curl wget hostname sudo which echo 'Set disable_coredump false' >> /etc/sudo.conf " |