ref: master
pkgs/rascunho/rascunho.initd
#!/sbin/openrc-run name="rascunho" description="rascunho markdown preview service" supervisor=supervise-daemon RASCUNHO_USER=${RASCUNHO_USER:-rascunho} RASCUNHO_BIND=${RASCUNHO_BIND:-127.0.0.1:5004} RASCUNHO_ARGS=${RASCUNHO_ARGS:-} LOGS=/var/log/rascunho.log supervise_daemon_args="-1 $LOGS -2 $LOGS" command="/usr/bin/gunicorn" command_args="rascunho:app -b $RASCUNHO_BIND $RASCUNHO_ARGS" command_user="$RASCUNHO_USER:$RASCUNHO_USER" pidfile="/run/${RC_SVCNAME}.pid" depend() { need net use postgresql } start_pre() { checkpath -f "$LOGS" -m 644 -o "$RASCUNHO_USER:$RASCUNHO_USER" }