sysutils/amazon-ssm-agent: Fix user creation with pkg -r

PR:		257800
Approved by:	cperciva (maintainer)
Sponsored by:	Rubicon Communications, LLC ("Netgate")
This commit is contained in:
Brad Davis 2021-08-12 19:30:31 -06:00
parent ebe45fb054
commit ee4e8a0b36
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= amazon-ssm-agent
PORTVERSION= 2.3.1205.0
PORTREVISION= 1
CATEGORIES= sysutils
MAINTAINER= cperciva@FreeBSD.org

View File

@ -2,5 +2,5 @@
if [ "$2" = "DEINSTALL" ]; then
echo "Removing ssm-user"
pw userdel ssm-user -r
pw -R ${PKG_ROOTDIR} userdel ssm-user -r
fi

View File

@ -2,5 +2,5 @@
if [ "$2" = "POST-INSTALL" ]; then
echo "Creating ssm-user for SSM Agent Sessions"
pw useradd ssm-user -G wheel -m
pw -R ${PKG_ROOTDIR} useradd ssm-user -G wheel -m
fi