summaryrefslogtreecommitdiff
path: root/distrib
AgeCommit message (Collapse)Author
2013-12-28syncTheo de Raadt
2013-12-27syncTheo de Raadt
2013-12-24syncTheo de Raadt
2013-12-24syncTheo de Raadt
2013-12-23The xbase set requires the comp set. If xbase is in the selection,Robert Peichaer
but not comp, put comp back in automatically. suggested by and ok deraadt@ ok halex@
2013-12-23syncTheo de Raadt
2013-12-21syncTheo de Raadt
2013-12-21syncTheo de Raadt
2013-12-18change password prompts (for the good of install.conf)Alexander Hall
add autoinstall question for root ssh pubkey make pubkey prompts appear in autoinstall log ideas from and ok deraaddt@, ok rpe@
2013-12-17syncTheo de Raadt
2013-12-17syncTheo de Raadt
2013-12-16Replace `[RESPONSEFILE=...] install auto` voodoo with plain'ol getopts,Alexander Hall
as discussed with uwe@ at some point. ok krw@, rpe@, "Cool" uwe@
2013-12-16syncJonathan Gray
2013-12-16Change subject of install|upgrade log to match periodic maintenanceAlexander Hall
email subjects better. ok deraadt@ rpe@ Suggested by, and "Lovely" deraadt@, "Sure" rpe@,
2013-12-11make the word-matching of the autoinstaller config file allow skippingAlexander Hall
the trailing question mark, such as in "hostname = foo" noted by, discussed with, and ok rpe@
2013-12-11for automated installs, use the hostname from the dhcp lease by defaultAlexander Hall
ok rpe@
2013-12-09Make the response lookup of a question match on entire words, whereAlexander Hall
anything not being a whitespace is considered part of a word. deraadt@ likes it, rpe@ has approved of the idea
2013-12-09syncTheo de Raadt
2013-12-08Use the value of SGIVOLSZ everywhere needed instead of recomputing it at runtimeMiod Vallat
by parsing the output of sgivol.
2013-12-08syncTheo de Raadt
2013-12-08Suggest booting from cd-rom as the first choice. Document that cd54.iso isMiod Vallat
now bootable on all supported platforms (although it will still need manual operation on IP22), but that install54.iso is currently still not bootable on IP27/IP35.
2013-12-08Don't forget to create a boot-IP28 link in /usr/mdec, for the sake of theMiod Vallat
installer. Fixes boot block installation on, well, IP28.
2013-12-08After a completed upgrade, present reboot and post-reboot instructions in aStefan Sperling
more intuitive order: Show the 'After rebooting, run sysmerge' hint below the line that explains how to reboot, instead of several lines above. Suggested by a new user doing the first upgrade. input/ok halex@ rpe@
2013-12-07Change the response file handling such that it "consumes" an answerAlexander Hall
once it's been used, and allow the same question to be answered multiple times. This way, responses to ask_which() questions no longer need the special magic we had for them being on a single line. idea from deraadt@ ok rpe@
2013-12-06Workaround closed stdin in non-interactive mode.Robert Peichaer
ok deraadt@
2013-12-05syncTheo de Raadt
2013-12-05syncTheo de Raadt
2013-12-05improve the question part (second line) of ask_which to actually includeAlexander Hall
the name of what we're asking for, rather than 'Which _one_ ...' Improves things a lot for the autoinstaller. ok rpe@
2013-12-04committing uwe's autoinstall notes, as requested by deraadt;Jason McIntyre
2013-12-04Defer spooling of the install log output mail until we are up andAlexander Hall
running again, with our mail system of choice running. ok deraadt@
2013-12-04Do not suggest changing boot-file to boot the SMP kernel, since the installerMiod Vallat
sets up /bsd as the SMP kernel on SMP systems; jkatz
2013-12-04Eliminate spurious space that breaks parsing of nwids containingKenneth R Westerback
blanks. Same fix was applied by todd@ to /etc/netstart (r1.114) in 2006. Pointed out by Remy via bugs@. Thanks!
2013-12-04the hostname.if for a vlan's parent interface should be mode 640 to avoidStuart Henderson
a warning at first boot ok deraadt
2013-12-04cpp does not work in the base set alone, it needs the comp set installedTheo de Raadt
because it in love with gcc internals. so move cpp to the comp set. spotted by jca
2013-12-03Create a minimalist XFS partition containing the 64-bit boot loader as itsMiod Vallat
only file, and put it in the volume header. This allows IP27 to be able to boot off cdrom via the ``Install System Software'' menu. Tested on Origin 200 (IP27) and Fuel (IP35), verified to still boot on IP32 using boot blocks from the volume header.
2013-12-03syncTheo de Raadt
2013-12-02As the number of interactively triggered (A)utoinstall's should be quiteAlexander Hall
outnumbered by (I)nstall's and (U)pgrade's, reorder the alternatives. "sure" deraadt@
2013-12-01More robuse parsing of the DHCP lease file for autoinstall. This will,Alexander Hall
for example, bail out instead of producing annoying output if the filename statement does not match auto_(install|upgrade). Brought up again by Patrik Lundin, thanks! ok rpe@
2013-12-01Allows the autoinstaller to pass a public ssh key for inclusion in theAlexander Hall
user's .ssh/authorized_keys. Deliberately not in interactive mode since I am not sure it's worth adding another question that only quite few people would enjoy. ok rpe@
2013-11-29Move the comments out of get_responsefile() into a description blockRobert Peichaer
at the top. ok halex@
2013-11-29Disable SRCLIBDIR crunchgen feature on gcc 3 platforms, same as mvme88k does.Kenji Aoyama
suggested and ok miod@
2013-11-29- Rename _bootdev to _ifdev now that we not only supportRobert Peichaer
the interface we netbooted from for initial dhcp reqest. - Change the error message in case no response file was found to match the info message at the beginning. ok krw@
2013-11-29syncTheo de Raadt
2013-11-28simplify the check if a responsefile line is validRobert Peichaer
idea from and ok halex@
2013-11-28make ask_which bail out on a missing response in the autoinstall caseAlexander Hall
rather than looping endlessly. ok rpe@
2013-11-28- use IFS=<space><tab> to trim the leading/trailing blanks with readRobert Peichaer
- simplify the key/value splitting with a true halexism - recognize a line without a '=' by counting the chars in _key/_val instead of doing a string comparison which needs a temporary _k var - localize _l ok krw@ halex@
2013-11-28Add missing files for luna88k.Kenji Aoyama
ok miod@
2013-11-28Now, that the auto installer supports both, install and upgrade,Robert Peichaer
use "non-interactive mode" instead of installation. ok deraadt@
2013-11-27wasteful spaces and tabs snuck in. Actually, it's true -- this is oneTheo de Raadt
place where they do matter...
2013-11-27Remove an outdated comment.Robert Peichaer
ok krw@ halex@