X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=blobdiff_plain;f=rip_dvd.wrap;h=b959fe66155f3d8d186ca881b2e3379deec74de3;hb=d8e47179263f32bd14841c09e2bcf8c70e416075;hp=bb8093c6d9171b438ab318e168033635fe206508;hpb=a0392e5f7d75539a0a6831d88fda15c821507dae;p=rip_dvd%2F.git diff --git a/rip_dvd.wrap b/rip_dvd.wrap index bb8093c..b959fe6 100755 --- a/rip_dvd.wrap +++ b/rip_dvd.wrap @@ -16,6 +16,18 @@ if [ -z "$dvdtype" ]; then usage fi +############################################################################## +# Local Machine Settings: +# Sources both the "default" conf file tracked by GIT (rip_dvd.conf.dist) +# and the local conf file created by each local machine (rip_dvd.conf) +# Copy the rip_dvd.conf.dist file to rip_dvd.conf and edit the later. +# This will allow you to override all the default values to meet your needs +# in a way that won't get clobbered when you pull updates from my GIT repo. +############################################################################## +config="${0%/*}/rip_dvd.conf" +[ -e "${config}.dist" ] && . ${config}.dist +[ -e "${config}" ] && . ${config} + ############################################## # get the name of the DVD from the DVD disk dvdname=`volname $dev | awk '{ print $1 }'` @@ -44,7 +56,7 @@ elif [ "$dvdtype" == "childrens" ]; then echo "-> Ripping Children's DVD" dest=/myth/video/DVDs/Childrens rip_opts="$rip_opts" -elif [ "$dvdtype" == "childrens" ]; then +elif [ "$dvdtype" == "church" ]; then echo "-> Ripping Church DVD" dest=/myth/video/DVDs/Church rip_opts="$rip_opts"