Skip to content

Commit 120a34c

Browse files
committed
Update post-installation message on container downloads
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent ae4d0a9 commit 120a34c

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

cmd/install.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,17 @@ func runInstall(_ *cobra.Command, _ []string) error {
8484
return err
8585
}
8686

87-
fmt.Println(`Check status with:
87+
fmt.Println(`
88+
The initial setup downloads various container images, which may take a
89+
minute or two depending on your connection.
90+
91+
Check the status of the faasd service with:
92+
8893
sudo journalctl -u faasd --lines 100 -f
8994
9095
Login with:
91-
sudo -E cat /var/lib/faasd/secrets/basic-auth-password | faas-cli login -s`)
96+
sudo -E cat /var/lib/faasd/secrets/basic-auth-password | faas-cli login -s
97+
`)
9298

9399
return nil
94100
}

hack/install-edge.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
# Copyright OpenFaaS Ltd 2025
4+
35
set -e # stop on error
46
set -o pipefail
57

@@ -104,7 +106,6 @@ echo ""
104106
echo "sudo mkdir -p /var/lib/faasd/secrets"
105107
echo "sudo nano /var/lib/faasd/secrets/openfaas_license"
106108
echo ""
107-
echo ""
108109
echo "4. Then perform the final installation steps"
109110
echo ""
110111
echo "sudo -E sh -c \"cd ${tmpdir}/var/lib/faasd && faasd install\""

0 commit comments

Comments
 (0)