mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
ee4e8a0b36
PR: 257800 Approved by: cperciva (maintainer) Sponsored by: Rubicon Communications, LLC ("Netgate")
7 lines
114 B
Bash
7 lines
114 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
echo "Removing ssm-user"
|
|
pw -R ${PKG_ROOTDIR} userdel ssm-user -r
|
|
fi
|