Patch to add missing config and take the maintainership

Two new variables was added to instance_config.cfg file
in version 2.8.13 to allow the addition and removal of
users from groups.
I am also taking over the maintainership of this packages
as previously discussed with Helen.

Bump PORTREVISION.

PR:		236500
Submitted by:	Lucas Kanashiro <lucas.kanashiro@collabora.com>
Approved by:	Helen Koike <helen.koike@collabora.com> (maintainer)
This commit is contained in:
Rodrigo Osorio 2019-04-11 08:47:19 +00:00
parent d27688f194
commit 73f44ba243
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=498656
2 changed files with 4 additions and 2 deletions

View File

@ -2,11 +2,11 @@
PORTNAME= google-compute-engine
DISTVERSION= 2.8.13
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= sysutils python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= helen.koike@collabora.com
MAINTAINER= lucas.kanashiro@collabora.com
COMMENT= Guest Environment for Google Compute Engine
LICENSE= APACHE20

View File

@ -1,4 +1,6 @@
[Accounts]
gpasswd_add_cmd = pw groupmod {group} -m {user}
gpasswd_remove_cmd = pw groupmod {group} -d {user}
useradd_cmd = pw useradd {user} -m
userdel_cmd = pw userdel {user} -r
usermod_cmd = pw usermod {user} -G {groups}