Files
rocm-systems/src/RPM_postun.in
T

17 lines
234 B
Plaintext
Raw Normal View History

2020-11-13 16:13:25 -08:00
stop_rdc() {
#stop RDC if running
systemctl stop rdc
return 0
}
reload_systemd() {
systemctl daemon-reload
return 0
}
if [ $1 -eq 0 ]; then
stop_rdc
unlink @DISTRO_ROOT@/rdc.service
reload_systemd
fi