View | Details | Raw Unified | Return to bug 218694
Collapse All | Expand All

(-)Makefile (+1 lines)
Lines 3-8 Link Here
3
3
4
PORTNAME=	salt
4
PORTNAME=	salt
5
PORTVERSION=	2016.11.3
5
PORTVERSION=	2016.11.3
6
PORTREVISION=	1
6
CATEGORIES=	sysutils python
7
CATEGORIES=	sysutils python
7
MASTER_SITES=	CHEESESHOP
8
MASTER_SITES=	CHEESESHOP
8
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
(-)files/patch-salt_modules_pw__user.py (+11 lines)
Line 0 Link Here
1
--- salt/modules/pw_user.py.orig	2017-04-17 04:36:14 UTC
2
+++ salt/modules/pw_user.py
3
@@ -475,7 +475,7 @@ def get_loginclass(name):
4
     userinfo = __salt__['cmd.run_stdout'](['pw', 'usershow', '-n', name])
5
     userinfo = userinfo.split(':')
6
 
7
-    return {'loginclass': userinfo[4] if len(userinfo) == 10 else ''}
8
+    return userinfo[4] if len(userinfo) == 10 else ''
9
 
10
 
11
 def list_groups(name):

Return to bug 218694