Skip to content

Instantly share code, notes, and snippets.

@a5m0
Last active May 25, 2019 20:35
Show Gist options
  • Save a5m0/957a93c27d5462d095b1e30b27f39469 to your computer and use it in GitHub Desktop.
Save a5m0/957a93c27d5462d095b1e30b27f39469 to your computer and use it in GitHub Desktop.
#!/bin/sh /etc/rc.common
START=99
reload() {
stop
sleep 5
start
}
restart() {
reload
}
start() {
/usr/bin/env amazon-dash run --root-allowed --config /etc/amazon-dash.yml &
}
stop() {
kill $(ps | grep amazon-dash | awk '{ print $1 }') &>/dev/null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment