8 lines
234 B
Bash
8 lines
234 B
Bash
#!/bin/sh
|
|
set -eu
|
|
if [ -d /run/systemd/system ]; then
|
|
systemctl daemon-reload
|
|
fi
|
|
# Removal preserves recordings, physical-command journals and encrypted
|
|
# application material. Package removal is not device state reset or rotation.
|