summaryrefslogtreecommitdiff
path: root/net/sup/files (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix build on Alpha.Steve Price1999-05-313-14/+53
| | | | Notes: svn path=/head/; revision=19129
* o Remove MAINTAINER, who is no longer maintaining this portWarner Losh1998-09-231-32/+27
| | | | | | | | | | o Change errno program variable to eno. Looks like this port has been broken for a while and no one noticed. Approved by: Old maintainer Notes: svn path=/head/; revision=13353
* Convert the changes from the version of sup in the src tree in recentPeter Wemm1997-03-111-0/+219
| | | | | | | | | history to patch format to the native tree layout. The version in src/usr.sbin/sup can now die. :-) Notes: svn path=/head/; revision=5934
* makescan does not return int.Justin T. Gibbs1995-12-131-13/+4
| | | | Notes: svn path=/head/; revision=2557
* Releases in a release file that do not specify scan=foo will not generateJustin T. Gibbs1995-12-111-0/+381
| | | | | | | | | | | | | | a scan file if supscan is run on that collection. Supfilesrv will not blindly take scan to be the scan file for any release that does not specify a scan file. It will take it if there is no releases file (there can only be on collection in that case). Supscan now takes optional "-r release" args to specify scanning only certain releases in a collection. Notes: svn path=/head/; revision=2553
* Bring in the modifications to SUP that I did for Berkeley's TCS.Justin T. Gibbs1995-08-141-7/+3151
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Preserve the timestamp of an updated file even if a command that is executed because of the update modifies the file. This allows you to do things like export /etc/hosts and when it changes, customize it based on the target host with a simple script, but not upgrade it every time sup is run. 2) Add the "unlinkbusy" SUP option. The goal of this option is to allow you to upgrade binaries and libraries on a running system via sup automagically just like "install" does. 3) Add the "rename" collection function. This allows you to store a file on the server under one name, but have it land on the client under another. All of these changes are targeted toward making SUP a better administrative tool. A reverse rdist if you like. TCS uses sup to keep over 100 HP workstations in sync with a master machine and performs all maintainence including new software installations and system patches using it without a hitch. Of course, the SUP collections are fairly complicated (HUP inetd when inetd.conf changes is a very simple example), but it definitely works and works well. This patch also includes full support for the HPUX platform. I didn't see any reason to strip it out since HPUX was the target platform of the original work and it may be of use to other people. Notes: svn path=/head/; revision=2061
* upfilesrv no longer linked due to missing -lcryptPaul Traina1994-10-271-0/+27
2.0-current distinguishes between crypt() and cipher() technology and in this case, the crypt() call was for password authentication on the file server. If building an encrypting sup, link with -lcipher -lcrypt, if building a normal sup, link with -lcrypt. Notes: svn path=/head/; revision=283