| | #!/bin/sh |
---|
| | # Update Various System Files, Ports, etc. |
---|
| | # Copyright (c) 2006-2012, TundraWare Inc, Des Plaines, IL USA |
---|
| | # All Rights Reserved |
---|
| | # $Id: sysupd,v 1.130 2012/11/18 14:42:36 toor Exp $ |
---|
| | # $Id: sysupd,v 1.131 2012/11/18 15:43:08 toor Exp $ |
---|
| | |
---|
| | |
---|
| | ##### |
---|
| | # Where To Put The Various Log Files Generated Here |
---|
| |
---|
| | case $SET |
---|
| | in |
---|
| | |
---|
| | ### |
---|
| | # CVSUP Updates |
---|
| | # SVN Updates |
---|
| | ### |
---|
| | |
---|
| | doc | ports | src) |
---|
| | doc | src) |
---|
| | runupd $SET $LOGDIR "/usr/local/bin/svn update /usr/${SET}" |
---|
| | ;; |
---|
| | |
---|
| | |
---|
| | ### |
---|
| | # Ports Updates |
---|
| | ### |
---|
| | |
---|
| | ports) |
---|
| | runupd $SET $LOGDIR "/usr/sbin/portsnap update" |
---|
| | ;; |
---|
| | |
---|
| | |
---|
| | ### |
---|
| |
---|
| | |