aboutsummaryrefslogtreecommitdiff
path: root/docs/install/bbb_setup.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/install/bbb_setup.md')
-rw-r--r--docs/install/bbb_setup.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/install/bbb_setup.md b/docs/install/bbb_setup.md
index 7f10fee2..4517eb6c 100644
--- a/docs/install/bbb_setup.md
+++ b/docs/install/bbb_setup.md
@@ -189,16 +189,16 @@ contents of this file with:
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: led_aging.sh
- # Required-Start: $local_fs
- # Required-Stop: $local_fs
+ # Required-Start: \$local_fs
+ # Required-Stop: \$local_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start LED aging
# Description: Starts LED aging (whatever that is)
### END INIT INFO
- x=$(/bin/ps -ef | /bin/grep "[l]ed_acc")
- if [ ! -n "$x" -a -x /usr/bin/led_acc ]; then
+ x=\$(/bin/ps -ef | /bin/grep "[l]ed_acc")
+ if [ ! -n "\$x" -a -x /usr/bin/led_acc ]; then
/usr/bin/led_acc &
fi