Skip to content

Commit

Permalink
Wrong shell specified, fixed
Browse files Browse the repository at this point in the history
Changed from bash to sh, as sh is Alpine's standard shell
  • Loading branch information
zinen authored Jun 15, 2020
1 parent 8048912 commit caa8487
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

echo "Checking who is listening/bound to port 8888 ..."
netstat -tlep | grep 8888
Expand All @@ -16,7 +16,7 @@ echo "Starting daemon pigpiod ..."
# for pigpiod options see http://abyz.me.uk/rpi/pigpio/pigpiod.html
# option -g will run the deamon in the foreground.
# option -a 1 should assure that we are not using GPU memory.
pigpiod -g -a 1 # Alpine
pigpiod -g -a 1
echo "... daemon stopped unexpectedly."

# added extra logic for issue: https://github.com/janvda/balena-node-red/issues/1
Expand Down

0 comments on commit caa8487

Please sign in to comment.