aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rwxr-xr-xconfig/hex-zero.init2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hex-zero.init b/config/hex-zero.init
index 6717ada..c991652 100755
--- a/config/hex-zero.init
+++ b/config/hex-zero.init
@@ -55,7 +55,7 @@ do_start()
# The above code will not work for interpreted scripts, use the next
# six lines below instead (Ref: #643337, start-stop-daemon(8) )
test -r /var/www/hex-zero/check-for-short_url.sh && {
- /bin/sh /var/www/hex-zero/check-for-short_url.sh || {
+ /bin/sh /var/www/hex-zero/check-for-short_url.sh 1>/dev/null 2>&1 || {
# the init script is somehow prevent all displayed output even when directly outputing it to /dev/pts/3
echo "Please run something similar to the following, before running hex-zero:"
echo "sudo su ${USER} -c 'pip3 --user install short_url'"
bgstack15