- Update to 1.4.8

- Support a uid/gid other than nobody
This commit is contained in:
Ryan Steinmetz 2018-05-21 12:48:43 +00:00
parent 2266cd8b05
commit e87ab55c6b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=470537
3 changed files with 7 additions and 6 deletions

View file

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= hitch
PORTVERSION= 1.4.6
PORTREVISION= 3
PORTVERSION= 1.4.8
CATEGORIES= security
MASTER_SITES= http://hitch-tls.org/source/ \
ZI

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1510149117
SHA256 (hitch-1.4.6.tar.gz) = b095e465f0fc37c5e46cfc0fbcf987ba90ed660caf7f559547df8dea985fec2b
SIZE (hitch-1.4.6.tar.gz) = 308210
TIMESTAMP = 1526906812
SHA256 (hitch-1.4.8.tar.gz) = d52ba690d90c25bbfca73f5e0ed427738366dac12faf46fb5834e497cc2d1ac3
SIZE (hitch-1.4.8.tar.gz) = 297107

View file

@ -30,9 +30,11 @@ load_rc_config $name
: ${hitch_enable="NO"}
: ${hitch_config="%%PREFIX%%/etc/hitch.conf"}
: ${hitch_user:=nobody}
: ${hitch_group:=nobody}
command="%%PREFIX%%/sbin/hitch"
command_args="--daemon -u nobody -g nobody -s --config=${hitch_config}"
command_args="--daemon -u ${hitch_user} -g ${hitch_group} -s --config=${hitch_config}"
extra_commands=reload
required_files=${hitch_config}