summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Allow inner whitespace in the right-hand side of an environment variablethomas2003-02-101-10/+17
| | | | | | | | assignment even if it is not quoted (as advertised by the man page). This fixes a regression wrt RELENG_4 introduced in rev. 1.11. Problem noted and patch tested by: CHOI Junho <cjh@kr.FreeBSD.org> Reviewed by: roberto
* Try to fix two problems with the -I example. One is the fact that wedougb2003-02-101-1/+1
| | | | | | | want to match a character $, not EOL. The other is that CVS helpfully expanded my example into an actual CVS tag. Submitted by: gad
* Explicitly release a existing lease before we start dhclient (again).mbr2003-02-091-0/+1
| | | | | | | | | If we already have a lease and restart sysinstall (or something with the net configuration goes wrong), we would have to reboot just because there is a dhclient hanging around. Reviewed by: murray (re) MFC after: 5 days
* Revisit the shell special characters issue and settle it once-and-forall.mtm2003-02-091-13/+19
| | | | | | | | All characters will be accepted, and pw(8) can sort out which ones it will allow and which ones it won't. Approved by: markm (mentor) Prodded by: Philippe Bourcier <philippe@cyberabuse.org>
* Improve device listing.simokawa2003-02-092-4/+6
|
* Give more information to users replacing sendmail regarding periodic'sgshapiro2003-02-081-0/+11
| | | | | | submit mail queue check. PR: docs/38924
* Change the behaviour of adduser to match the previous incarnation a little more.adrian2003-02-081-2/+26
| | | | | | | | | | | | | If any of the given groups do not exist complain and let the user try again. This saves the user from discovering at the end of the process that they've forgotten to add a group or they've typoed. Thanks to cmc/dougb for pointing out how bad my sh fu actually is. Original code by: me Scary sh rewrite by: dougb Reviewed by: dougb
* Relocate a call to enable inetd so that it is set regardless ofrwatson2003-02-062-4/+2
| | | | | | | whether the user chooses to edit inetd.conf. PR: 39311 Reported by: Martin Faxer <gmh003532@brfmasthugget.se>
* MFS: 1.2.2.2trhodes2003-02-051-1/+1
|
* * Update copyright year.dougb2003-02-051-5/+6
| | | | | | | | | | | | * Give back one line of ws when showing a diff. This was requested by several. * Un-quote DIFF_FLAG, and add DIFF_OPTIONS. This will allow the user to do more creative things in a mergemaster rc file. Un-quoting is necessary in order to handle things like CVS Id tags that look like shell variables. * Simplify terminal width determination. Suggestions related to ignoring the CVS Id's were taken from several, with dillon and gad providing particularly helpful feedback.
* * Update copyright year.dougb2003-02-051-2/+5
| | | | * Add an example that ignores CVS Id tags for the new DIFF_OPTIONS variable.
* Added MI version of <sys/imgact_aout.h>, "a.out.h", which isru2003-02-042-2/+87
| | | | | | | always compatible with the i386 version. This fixes one of the problems I had cross-releasing i386 on Alpha: the produced "-f aout" binaries are now identical.
* Always build kgzip(8); needed to cross-release i386.ru2003-02-041-1/+1
|
* Make this work on non-i386 as well. (Needed for cross-releases.)ru2003-02-042-2/+3
|
* Better gender-neutral language.fanf2003-02-041-2/+2
| | | | Submitted by: sheldonh
* even the default case in a switch requires some action (add break;)billf2003-02-031-1/+2
| | | | | EVP_sha1() returns a const EVP_MD *, so reflect that in the variable we store its return value in.
* Fixup capitalization in some of the Startup menu entries.jhb2003-02-032-12/+12
| | | | Submitted by: Hiten Pandya <hiten@unixdaemons.com>
* Remove this Makefile, these docs are built by the Makefiles in ↵trhodes2003-02-011-11/+0
| | | | src/share/doc/smm.
* No need for the OPENSSL_NO_KRB5 switch anymore.markm2003-01-312-2/+0
| | | | Fixed by: nectar
* - Modernize the format of the open file showing mode output:robert2003-01-311-10/+23
| | | | | | | | | | | | | | | | | | . Print the column headers centered (except for the left-aligned TYPE header) using a different header for architectures where sizeof(uintptr_t) is not four. . Consistently do not print a '0x' prefix for hexadecimal values. . Separate columns by a single space character. . Pad the columns presenting an address or offset enough to hold their respective largest value. . Do not restrict the output to unknown file types, inodes and sockets; allow displaying of pipes, fifos, kqueues and crypto file descriptors too. - Shorten an overly long line by removing a cast of printf's return value to void. PR: alpha/45240 Tested on: i386, sparc64, alpha
* Eliminate hard sentence breaks.trhodes2003-01-301-4/+4
|
* Grammar cleanup.trhodes2003-01-302-5/+5
| | | | | | PR: 34529 Submitted by: David Sieborger <drs@rucus.ru.ac.za> (original version) With comments by: keramida
* Improve alignment in printf().simokawa2003-01-301-1/+1
|
* Part 1/3 of unbreaking cross releases:ru2003-01-292-1/+58
| | | | | | | | | Back out the removal of custom version of endian.h system header. On recent systems, it just falls back to <sys/endian.h>. But on older systems like 5.0-DP1 or 4-STABLE, this private version may be necessary, as crunchide(1) is a cross-tool for "make release". Spotted by: kris, markm
* iAdjust for OpenSSL 0.9.7.markm2003-01-282-0/+2
|
* Backout last commit by request.dillon2003-01-281-44/+11
|
* - Search free device node to open. (fwcontrol.c)simokawa2003-01-283-94/+135
| | | | | - Exploit multiple packets read/write for DV stream. (fwdv.c) - Add reference to libdv in the ports collection. (fwcontrol.8)
* Changes so the 'pw' command will allow '$' as the last character in a useridgad2003-01-281-14/+51
| | | | | | | | | | | or group name (mainly for the benefit of samba). This pretty much rewrites he pw_checkname() routine, but should work exactly the same except for the above change, and that error messages are somewhat more informative. PR: 28733 46890 Inspired by: example patch written by Terry Lambert Reviewed by: no objections on freebsd-arch and freebsd-current MFC plans: no plans, but will do if people want it in stable.
* Teach sysinstall about the em(4) device.trhodes2003-01-272-0/+2
| | | | | | | | PR: 46439 Submitted by: Dan Lukes <dan@obluda.cz> Approved by: re (murray) Tested? yes MFC: 1 day
* Note that -c is no longer supported. This was requested by a few users andtrhodes2003-01-271-0/+4
| | | | | | | | we even have a PR about it. PR: 47388 Discussed with: bmah Requested by: many
* Correct typo.murray2003-01-262-2/+2
| | | | Submitted by: Andreas Kohn <andreas.kohn@gmx.net> (via -STABLE)
* Reword the description of -R a bit and add a note about being carefulkeramida2003-01-261-2/+6
| | | | | | | when -R is combined with patterns that might match ".." (like ".*"). PR: 46415 Submitted by: Gary W. Swearingen <swear@attbi.com>
* Change the nominal swap calculation from 1/2 physical memory to 1/8dillon2003-01-252-2/+2
| | | | | | | | | | | | | | physical memory. The default is still 2x physical memory. The nominal calculation is used to back-off swap auto-allocation ('A'uto command) when the disk is not large enough to accomodate all filesystem auto-defaults. This gives other partitions (like /usr) more priority over swap on smaller disks. This should help solve reported auto-sizing failures on machines with small hard drives and huge amounts of memory. For example, a machine with 2G of disk and 4G of memory will fail to auto-size without this fix. MFC after: 3 days
* Commit simple mergemaster changes to make the UI more deterministicdillon2003-01-251-11/+44
| | | | | (far easier to use) by limiting the initial display to the size of the window.
* Change API of FW_GDEVLST ioctl.simokawa2003-01-251-28/+42
| | | | | | - include information about itself. - define struct fw_devinfo and use it in struct fw_devlstreq. - unify EUI64 representation using struct fw_eui64.
* Use stderr for message output.simokawa2003-01-242-31/+37
|
* back out logging to /var/log/adduserfjoe2003-01-241-6/+0
| | | | (/usr/sbin/pw already logs to /var/log/userlog)
* In interactive mode, ask the user if he/she wants to add anothermtm2003-01-241-0/+18
| | | | | | | | user and re-run interactive questions or quit depending on the answer. Submitted by: Scot Hetzel <hetzels@westbend.net> Approved by: markm (mentor)
* expr foo -> $((foo))fjoe2003-01-231-2/+2
|
* - restore an ability to write log of added users (default tofjoe2003-01-231-3/+13
| | | | | | | /var/log/adduser, disabled if empty or adduserlog="no") - do not ask for password in configure mode - print $passwdtype instead of password in configure mode - add DATECMD, GREPCMD (not overridable but with full path)
* Do not loose trailing spaces when printing prompt messages.fjoe2003-01-231-3/+3
|
* Do not expose password if it is empty and PWF_STANDARD format is requestedfjoe2003-01-231-1/+2
| | | | MFC after: 1 week
* Merge DV(Digital Video) support.simokawa2003-01-234-3/+449
|
* burncd format accepts either 'dvd+rw' or 'dvd-rw' not 'dwd+rw'.johan2003-01-231-2/+2
| | | | Approved by: sos
* ypserv(8) is now started from rc.dmtm2003-01-231-1/+1
| | | | Approved by: markm (mentor)(implicit)
* *blush*mtm2003-01-231-8/+8
| | | | | | | While I'm here properly quote all the other input I neglected to quote. Approved by: markm (mentor)(implicit)
* Don't forget to properly quote input.mtm2003-01-211-1/+1
| | | | | Approved by: markm (mentor)(implicit) Submitted by: Robin Breathe <robin@isometry.net>
* pccardd and pccardc are for i386 and pc98 only. Don't build them onimp2003-01-211-1/+1
| | | | | | other architectures. Pointed out by: peter
* - Restore header printing to wi_printaplist()mdodd2003-01-211-34/+59
| | | | | | | | | | | - Move APRATE switch() code to function for clarity. - Conditionally call wi_printaplist() alone if more than one 'L' is preset. - Add the 'Q' flag to suppress printing of extraneous information in wi_printaplist(). - Re-order second getopt() in main(). Reviewed by: imp
* Fix kldxref on sparc64 by allowing non-trivial relocations to be performedjake2003-01-216-3/+239
| | | | | | | | | on variables read out of raw kld files. Unlike other platforms the value will be in an Elf_Rela, not in the data section of the elf file. Submitted by: Hartmut Brandt <brandt@fokus.gmd.de> PR: 46730 Tested on: alpha (obrien), i386, sparc64
OpenPOWER on IntegriCloud