8 lines
244 B
Bash
8 lines
244 B
Bash
#!/bin/sh
|
|
set -eu
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl daemon-reload
|
|
fi
|
|
# Preserve identity and ownership on remove/purge. A future explicit UI factory
|
|
# reset must distinguish local deletion from revoking remote Core authorization.
|