diff --git a/sysupd b/sysupd index afc3308..63c533a 100755 --- a/sysupd +++ b/sysupd @@ -2,7 +2,7 @@ # Update Various System Files, Ports, etc. # Copyright (c) 2006-2013, TundraWare Inc, Des Plaines, IL USA # All Rights Reserved -# $Id: sysupd,v 1.136 2013/03/26 17:09:13 tundra Exp $ +# $Id: sysupd,v 1.137 2013/03/26 17:20:26 tundra Exp $ ##### @@ -16,7 +16,10 @@ # List Of Sets To Process By Default ##### -DEFAULTSETS='doc ports src texlive' +#ALL='debian freebsd_doc freebsd_ports freebsd_src texlive' + + +DEFAULTSETS='freebsd_doc freebsd_ports freebsd_src texlive' # ---------------- Support Functions ---------------- # @@ -86,7 +89,7 @@ in ### - # Debian Linux Updates + # Debian Linux Updates ### debian) @@ -94,25 +97,34 @@ ;; ### - # SVN Updates + # FreeBSD Documentation Updates ### - doc | src) - runupd $SET $LOGDIR "/usr/local/bin/svn update /usr/${SET}" + freebsd_doc) + runupd $SET $LOGDIR "/usr/local/bin/svn update /usr/doc" ;; ### - # Ports Updates + # Freebsd Ports Updates ### - ports) + freebsd_ports) runupd $SET $LOGDIR "/usr/sbin/portsnap cron update" ;; ### - # Update TeX Live + # FreeBSD Source Code Updates + ### + + freebsd_src) + runupd $SET $LOGDIR "/usr/local/bin/svn update /usr/src" + ;; + + + ### + # TeX Live Updates ### texlive)