svn commit: r498656 - in head/sysutils/py-google-compute-engine: . files

Rodrigo Osorio rodrigo at FreeBSD.org
Thu Apr 11 08:47:21 UTC 2019


Author: rodrigo
Date: Thu Apr 11 08:47:19 2019
New Revision: 498656
URL: https://svnweb.freebsd.org/changeset/ports/498656

Log:
  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 at collabora.com>
  Approved by:	Helen Koike <helen.koike at collabora.com> (maintainer)

Modified:
  head/sysutils/py-google-compute-engine/Makefile
  head/sysutils/py-google-compute-engine/files/instance_configs.cfg.distro.sample

Modified: head/sysutils/py-google-compute-engine/Makefile
==============================================================================
--- head/sysutils/py-google-compute-engine/Makefile	Thu Apr 11 07:19:03 2019	(r498655)
+++ head/sysutils/py-google-compute-engine/Makefile	Thu Apr 11 08:47:19 2019	(r498656)
@@ -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 at collabora.com
+MAINTAINER=	lucas.kanashiro at collabora.com
 COMMENT=	Guest Environment for Google Compute Engine
 
 LICENSE=	APACHE20

Modified: head/sysutils/py-google-compute-engine/files/instance_configs.cfg.distro.sample
==============================================================================
--- head/sysutils/py-google-compute-engine/files/instance_configs.cfg.distro.sample	Thu Apr 11 07:19:03 2019	(r498655)
+++ head/sysutils/py-google-compute-engine/files/instance_configs.cfg.distro.sample	Thu Apr 11 08:47:19 2019	(r498656)
@@ -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}


More information about the svn-ports-all mailing list