mirror of https://github.com/Wind4/vlmcsd
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
279 B
Bash
15 lines
279 B
Bash
6 years ago
|
#!/bin/bash
|
||
|
#
|
||
|
# Install a VLMCSD service for CentOS/RedHat
|
||
|
#
|
||
|
# Author: Wind4 (puxiaping@gmail.com)
|
||
|
# Date: October 28, 2018
|
||
|
#
|
||
|
|
||
|
echo 'Remove the /etc/init.d/vlmcsd'
|
||
|
rm -f /etc/init.d/vlmcsd
|
||
|
|
||
|
echo 'Remove the /usr/bin/vlmcsd'
|
||
|
rm -f /usr/bin/vlmcsd
|
||
|
|
||
|
echo 'Uninstall successfully.'
|