diff options
author | feld <feld@FreeBSD.org> | 2017-08-04 00:23:30 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 05:17:49 +0800 |
commit | abeaeda0a82cb56070ca7c606d62006eab2bde32 (patch) | |
tree | c5326b4351638ae49f23a5ef69985fc4f041428c | |
parent | 7404d0fc528468ca8dfc2f8f25f6b3a6e8d8cf7e (diff) | |
download | freebsd-ports-gnome-abeaeda0a82cb56070ca7c606d62006eab2bde32.tar.gz freebsd-ports-gnome-abeaeda0a82cb56070ca7c606d62006eab2bde32.tar.zst freebsd-ports-gnome-abeaeda0a82cb56070ca7c606d62006eab2bde32.zip |
Reserve GID for couchpotato user
It was incorrect of me to set the GID to 65534
-rw-r--r-- | GIDs | 2 | ||||
-rw-r--r-- | UIDs | 2 | ||||
-rw-r--r-- | net-p2p/couchpotato/Makefile | 3 |
3 files changed, 4 insertions, 3 deletions
@@ -895,7 +895,7 @@ conquest:*:950: openerpd:*:951: bitten-slave:*:952: _neubot:*:953: -# free: 954 +couchpotato:*:954: hadoop:*:955: pandora:*:956: razorback:*:957: @@ -896,7 +896,7 @@ mediatomb:*:946:946::0:0:Mediatomb UPnP AV MediaServer:/nonexistent:/usr/sbin/no mapred:*:947:955::0:0:Hadoop MapReduce user:/nonexistent:/usr/sbin/nologin dnrd:*:948:948::0:0:& user:/nonexistent:/usr/sbin/nologin _lldpd:*:949:949::0:0:lldpd user:/nonexistent:/usr/sbin/nologin -couchpotato:*:950:65534::0:0:couchpotato user:/nonexistent:/usr/sbin/nologin +couchpotato:*:950:954::0:0:couchpotato user:/nonexistent:/usr/sbin/nologin openerpd:*:951:951::0:0:Openerpd user:/nonexistent:/usr/sbin/nologin bitten-slave:*:952:952:daemon:0:0:Bitten slave user:/var/lib/bitten-slave:/usr/sbin/nologin _neubot:*:953:953::0:0:neubot daemon:/nonexistent:/usr/sbin/nologin diff --git a/net-p2p/couchpotato/Makefile b/net-p2p/couchpotato/Makefile index 0e6608f60cb8..46b6a5489378 100644 --- a/net-p2p/couchpotato/Makefile +++ b/net-p2p/couchpotato/Makefile @@ -3,7 +3,7 @@ PORTNAME= couchpotato PORTVERSION= 0.0.20170327 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p python MAINTAINER= joshruehlig@gmail.com @@ -25,6 +25,7 @@ USES= python:2.7 shebangfix SHEBANG_FILES= CouchPotato.py USERS= couchpotato +GROUPS= couchpotato USE_GITHUB= yes GH_ACCOUNT= CouchPotato |