From: Todd C. Miller Date: Sat, 31 Jul 1999 16:31:27 +0000 (+0000) Subject: Sudo, not CU Sudo X-Git-Tag: SUDO_1_6_0~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a51e05e63bc90cc936aafac9dc35c17bee4c188;p=sudo Sudo, not CU Sudo --- diff --git a/HISTORY b/HISTORY index c3a1af35e..9a255580f 100644 --- a/HISTORY +++ b/HISTORY @@ -17,12 +17,13 @@ of his consulting firm, Courtesan Consulting. Courtesan remains committed to a free sudo and is sponsoring another sudo rewrite as well as continued development of the sudo 1.x code base. As of version 1.6, Sudo no longer contains any of the original "Root -Group" code and is available with a BSD-style license. +Group" code and is available with a BSD-style license. As there +has been no public release of Sudo from the "Root Group" I've dropped +the `CU' from the name. sudo, in its current form, is maintained by: - Todd Miller - + Todd Miller Todd continues to enhance sudo and fix bugs. Bug reports and fixes should be mailed to sudo-bugs@courtesan.com. Please include the version diff --git a/INSTALL b/INSTALL index 90df02fd6..aa14d037d 100644 --- a/INSTALL +++ b/INSTALL @@ -1,5 +1,5 @@ -Installation instructions for CU sudo 1.6 -========================================= +Installation instructions for Sudo 1.6 +====================================== Sudo uses a `configure' script to probe the capabilities and type of the system in question. In this release, `configure' takes many diff --git a/Makefile.in b/Makefile.in index dad2847f1..835f33879 100644 --- a/Makefile.in +++ b/Makefile.in @@ -289,9 +289,9 @@ realclean: distclean cleandir: realclean dist: $(DISTFILES) - rm -f ../cu-sudo.v$(VERSION).tar.gz + rm -f ../sudo-$(VERSION).tar.gz ( cd .. ; TF="/tmp/sudo.dist$$$$" ; rm -f $$TF ; for i in $(DISTFILES) ; \ - do echo sudo.v$(VERSION)/$$i >> $$TF ; done ; \ - tar Ocf cu-sudo.v$(VERSION).tar \ - `cat $$TF` && gzip --best cu-sudo.v$(VERSION).tar && rm -f $$TF) - ls -l ../cu-sudo.v$(VERSION).tar.gz + do echo sudo-$(VERSION)/$$i >> $$TF ; done ; \ + tar Ocf sudo-$(VERSION).tar \ + `cat $$TF` && gzip --best sudo-$(VERSION).tar && rm -f $$TF) + ls -l ../sudo-$(VERSION).tar.gz diff --git a/README b/README index 27274ed7a..8ae51d89e 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -This is the CU version of sudo, release 1.6 +This is Sudo version 1.6 The sudo philosophy =================== @@ -19,15 +19,15 @@ the `sudo-workers' mailing list you will get the BETA announcements What's new ========== -For a history of CU sudo please see the HISTORY file that came with the -release. Please note that while this source is based on the Root -Group's sudo 1.1, the code has been changed significantly, so please -do not bother them with bugs in CU sudo. Bug reports for this sudo -should be sent to sudo-bugs@courtesan.com. +For a history of sudo please see the HISTORY file that came with this +release. For a complete list of changes, see the CHANGES file. For a summary, see the web page, http://www.courtesan.com/sudo/. +If you are upgrading from an earlier version of Sudo, please see +the UPGRADE file. + NOTE: Starting with sudo 1.5.7 the configuration method has changed significantly as compared to previous versions. All options are now set via the configure script. See the `INSTALL' file diff --git a/RUNSON b/RUNSON index 7c6c44f6d..255509c8e 100644 --- a/RUNSON +++ b/RUNSON @@ -1,4 +1,4 @@ -Systems that CU sudo is known to run on. +Systems that Sudo is known to run on. Just because a specific version of your OS is not listed with the current version of sudo does not mean it won't work... @@ -63,6 +63,7 @@ DEC UNIX 3.2c alpha bundled cc 1.5.3 Todd Miller none DEC UNIX 4.0D alpha gcc-2.7.2.1 1.5.9 Todd Miller --with-skey DEC UNIX 4.0 alpha gcc-2.7.2.1 1.5.3 Todd Miller --with-kerb4 DEC UNIX 4.0D alpha bundled cc 1.5.3 Randall R. Cable --with-C2 +DEC UNIX 4.0E alpha bundled cc 1.5.9p2 Vangelis Haniotakis none AIX 3.2.X rs6000 bundled cc 1.4 Todd Miller none AIX 4.1.5 rs6000 gcc-2.7.2.3 1.4.4 Daniel Robitaille none AIX 4.1.3 PowerPC gcc-2.7.0 1.4 Bob Shair none @@ -113,7 +114,7 @@ DC-OSx 1.1-9x mips PyrC 4.0A20 1.5.6p2 Brian Jackson none HI-UX/MPP 02-03 sr2201 bundled cc 1.5.4 Ben Edgington none SVR4 4.4 m88k bundled gcc 1.5.7p4 Gerry Belanger CFLAGS= -Systems on which CU sudo is expected to run on but hasn't been tested. +Systems on which Sudo is expected to run on but hasn't been tested. If you can verify any of these, please send mail to sudo-bugs@courtesan.com Op. System CPU Compilers Sudo Reported Special diff --git a/TROUBLESHOOTING b/TROUBLESHOOTING index 81fae1158..daab4032c 100644 --- a/TROUBLESHOOTING +++ b/TROUBLESHOOTING @@ -1,5 +1,5 @@ -FAQ and troubleshooting tips for CU sudo -======================================== +FAQ and troubleshooting tips for Sudo +===================================== Q) Sudo compiles but when I run it I get "Sorry, sudo must be setuid root." and sudo quits. diff --git a/configure b/configure index 2bd6d8eaa..11953ed26 100755 --- a/configure +++ b/configure @@ -645,7 +645,7 @@ fi -echo "Configuring CU Sudo version 1.6" +echo "Configuring Sudo version 1.6" PROGS="sudo visudo" SUDO_LDFLAGS="" VISUDO_LDFLAGS="" diff --git a/configure.in b/configure.in index d1abfedbc..f0b2dc800 100644 --- a/configure.in +++ b/configure.in @@ -9,7 +9,7 @@ AC_CONFIG_HEADER(config.h pathnames.h) dnl dnl This won't work before AC_INIT() dnl -echo "Configuring CU Sudo version 1.6" +echo "Configuring Sudo version 1.6" dnl dnl Variables that get substituted in the Makefile dnl diff --git a/sudo.c b/sudo.c index b79e05ce3..d2469fa7b 100644 --- a/sudo.c +++ b/sudo.c @@ -221,7 +221,7 @@ main(argc, argv) switch (sudo_mode) { case MODE_VERSION: case MODE_HELP: - (void) printf("CU Sudo version %s\n", version); + (void) printf("Sudo version %s\n", version); if (sudo_mode == MODE_VERSION) exit(0); else