We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e2c935 commit b6abfedCopy full SHA for b6abfed
config/startupservice.sh
@@ -1,6 +1,12 @@
1
#!/bin/bash
2
+set -o errexit
3
+set -o nounset
4
+
5
+# https://en.wikipedia.org/wiki/ANSI_escape_code
6
+E0="$(printf "\e[0m")" # reset
7
+E1="$(printf "\e[1m")" # bold
8
9
/sbin/apache2ctl -v
-echo 'Starting webserver: http://127.0.0.1:8080'
10
+echo "${E1}Starting webserver: http://127.0.0.1:8080${E0}"
11
# Start Apache in the foreground
12
/sbin/apache2ctl -D FOREGROUND -k start
0 commit comments