We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43e51c5 commit ef68994Copy full SHA for ef68994
hack/install-edge.sh
@@ -2,6 +2,9 @@
2
set -e # stop on error
3
set -o pipefail
4
5
+export NEEDRESTART_MODE=a
6
+export DEBIAN_FRONTEND=noninteractive
7
+
8
if [ "$EUID" -ne 0 ]; then
9
echo "Please run as root or with sudo"
10
exit
@@ -29,8 +32,8 @@ install_required_packages() {
29
32
# to get it working in raspberry pi. No such known issues in
30
33
# other distros. Hence, adding only to this block.
31
34
# reference: https://github.com/openfaas/faasd/pull/237
- apt-get update -y
- apt-get install -y curl runc bridge-utils iptables iptables-persistent
35
+ apt-get update -yq
36
+ apt-get install -yq curl runc bridge-utils iptables iptables-persistent
37
elif $(has_yum); then
38
yum check-update -y
39
yum install -y curl runc iptables-services which
0 commit comments