forked from Lainports/opnsense-ports
6 lines
114 B
Bash
6 lines
114 B
Bash
#!/bin/sh
|
|
|
|
if [ "$2" = "DEINSTALL" ]; then
|
|
echo "Removing ssm-user"
|
|
pw -R ${PKG_ROOTDIR} userdel ssm-user -r
|
|
fi
|