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