#!/bin/sh

if alert --warning "This script will attempt to move your CDDA-fs 1.6 settings to the correct location for CDDA-fs 1.7 Do you wish to continue?" "OK" "Cancel"
then
   if [ -d /boot/home/cd ]
   then
      cd /boot/home/cd
      mkdir /boot/home/config/settings/cdda
      mv [0123456789abcdef][0123456789abcdef][0123456789abcdef][0123456789abcdef][0123456789abcdef][0123456789abcdef][0123456789abcdef][0123456789abcdef] @dev@disk@* /boot/home/config/settings/cdda
      alert "Done"
   else
      alert "settings-dir not found"
   fi
fi
