forked from Lainports/freebsd-ports
PR: 257800
Approved by: cperciva (maintainer)
Sponsored by: Rubicon Communications, LLC ("Netgate")
6 lines
149 B
Bash
6 lines
149 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "Creating ssm-user for SSM Agent Sessions"
|
|
pw -R ${PKG_ROOTDIR} useradd ssm-user -G wheel -m
|
|
fi
|