structured-proxy 2.2.1

Universal gRPC→REST transcoding proxy — config-driven, works with any gRPC service
Documentation
#!/bin/sh
set -e

# Drop the system user on purge only. `remove` keeps it so a reinstall keeps
# config ownership intact.
case "$1" in
    purge)
        if getent passwd structured-proxy >/dev/null; then
            deluser --quiet --system structured-proxy 2>/dev/null || true
        fi
        if getent group structured-proxy >/dev/null; then
            delgroup --quiet --system structured-proxy 2>/dev/null || true
        fi
        ;;
esac

#DEBHELPER#

exit 0