| | #!/bin/sh |
---|
| | # Update Various System Files, Ports, etc. |
---|
| | # Copyright (c) 2006-2008, TundraWare Inc, Des Plaines, IL USA |
---|
| | # All Rights Reserved |
---|
| | # $Id: sysupd,v 1.118 2008/06/27 20:12:17 root Exp $ |
---|
| | # $Id: sysupd,v 1.119 2010/02/03 05:04:19 root Exp $ |
---|
| | |
---|
| | |
---|
| | ##### |
---|
| | # Where To Put The Various Log Files Generated Here |
---|
| |
---|
| | ##### |
---|
| | # List Of Sets To Process By Default |
---|
| | ##### |
---|
| | |
---|
| | DEFAULTSETS='mirror ports stable' |
---|
| | DEFAULTSETS='mirror doc ports stable' |
---|
| | |
---|
| | |
---|
| | |
---|
| | # ---------------- Support Functions ---------------- # |
---|
| |
---|
| | ### |
---|
| | # CVSUP Updates |
---|
| | ### |
---|
| | |
---|
| | doc) |
---|
| | runupd $SET $DIRCVS "/usr/bin/csup -h cvsup4.freebsd.org /root/cvsup/$SET-supfile" |
---|
| | ;; |
---|
| | |
---|
| | ports) |
---|
| | runupd $SET $DIRCVS "/usr/bin/csup -h cvsup4.freebsd.org /root/cvsup/$SET-supfile" |
---|
| | ;; |
---|
| | |
---|
| |
---|
| | |