Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 Apr 2019 08:47:19 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r498656 - in head/sysutils/py-google-compute-engine: . files
Message-ID:  <201904110847.x3B8lJrJ039643@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@collabora.com>
  Approved by:	Helen Koike <helen.koike@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@collabora.com
+MAINTAINER=	lucas.kanashiro@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}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904110847.x3B8lJrJ039643>