mirror of
https://0xacab.org/sutty/sutty
synced 2025-03-15 07:08:17 +00:00
6 lines
161 B
Bash
6 lines
161 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
case $1 in
|
|
prometheus) daemonize -c /srv/http -p /tmp/prometheus.pid -l /tmp/prometheus.pid -u app /usr/bin/foreman start prometheus ;;
|
|
esac
|