git: 4de1678219ec - main - www/p5-Starman: fix init script
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 26 Jan 2025 16:38:47 UTC
The branch main has been updated by pi: URL: https://cgit.FreeBSD.org/ports/commit/?id=4de1678219ec1c19bfb57b42b56703ed6bdf1c0f commit 4de1678219ec1c19bfb57b42b56703ed6bdf1c0f Author: James B. Byrne <byrnejb@harte-lyne.ca> AuthorDate: 2025-01-26 16:37:55 +0000 Commit: Kurt Jaeger <pi@FreeBSD.org> CommitDate: 2025-01-26 16:37:55 +0000 www/p5-Starman: fix init script PR: 248916 --- www/p5-Starman/files/starman.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www/p5-Starman/files/starman.in b/www/p5-Starman/files/starman.in index 03315eb9c17b..d8095d634b6b 100644 --- a/www/p5-Starman/files/starman.in +++ b/www/p5-Starman/files/starman.in @@ -29,10 +29,10 @@ rcvar=starman_enable command="%%PREFIX%%/bin/${name}" load_rc_config $name -starman_enable=${starman_enable-"NO"} -starman_config=${starman_config-"%%PREFIX%%/etc/starman.psgi"} -starman_user=${starman_user-"www"} -starman_group=${starman_group-"www"} +starman_enable=${starman_enable:-"NO"} +starman_config=${starman_config:-"%%PREFIX%%/etc/starman.psgi"} +starman_user=${starman_user:-"www"} +starman_group=${starman_group:-"www"} pidfile=${starman_pidfile:-/var/run/starman/starman.pid} command_args="--daemonize --user ${starman_user} --group ${starman_group} --pid ${pidfile} --app ${starman_config}"