11 lines
173 B
Bash
11 lines
173 B
Bash
#!/bin/bash
|
|
|
|
# Stop running instance if needed
|
|
systemctl stop mxisd.service
|
|
|
|
# Disable service if exists
|
|
systemctl disable mxisd.service
|
|
|
|
# remove symlink
|
|
rm /usr/bin/mxisd
|