1 #!/bin/sh 2 #-------------------------------------------------------------- 3 # This is the burnCDDA uninstall script. 4 # 5 # burnCDDA is a shell script for burning Audio-CDs with cdrdao 6 # and cdrecord. 7 # 8 # (C) 2001 by Thorsten Muehlfelder <thenktor@gmx.de> 9 # burnCDDA comes with ABSOLUTELY NO WARRANTY. 10 # This is free software, and you are welcome to redistribute it 11 # under terms of the GNU General Public License (version 2) 12 # as published by the Free Software Foundation. 13 #-------------------------------------------------------------- 14 15 echo "Removing burnCDDA files..." 16 rm -f /usr/bin/burncdda 17 rm -rf /usr/share/burncdda 18 rm -f /usr/man/man1/burncdda.1 19 rm -f /etc/burncdda.conf 20 rm -f /etc/burncdda.conf.old 21 rm -f /etc/burncdda.conf.new 22 echo "Done"