uninstall.sh 279 B

123456789101112131415
  1. #!/bin/bash
  2. #
  3. # Install a VLMCSD service for CentOS/RedHat
  4. #
  5. # Author: Wind4 (puxiaping@gmail.com)
  6. # Date: October 28, 2018
  7. #
  8. echo 'Remove the /etc/init.d/vlmcsd'
  9. rm -f /etc/init.d/vlmcsd
  10. echo 'Remove the /usr/bin/vlmcsd'
  11. rm -f /usr/bin/vlmcsd
  12. echo 'Uninstall successfully.'