diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-03 17:01:38 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-03 17:01:38 -0500 |
commit | 32208aa88f5311f0c55d72d2ffc2eea3a2612ae7 (patch) | |
tree | 73018902e4acf16e4ae0d0e46c83e1ac4a7e8671 | |
parent | 598e9e679e6554b8c0f26ada5822f4a3254cec03 (diff) | |
download | horizon-32208aa88f5311f0c55d72d2ffc2eea3a2612ae7.tar.gz horizon-32208aa88f5311f0c55d72d2ffc2eea3a2612ae7.tar.bz2 horizon-32208aa88f5311f0c55d72d2ffc2eea3a2612ae7.tar.xz horizon-32208aa88f5311f0c55d72d2ffc2eea3a2612ae7.zip |
image: ISO: Add root pw note to /etc/issue
-rw-r--r-- | image/backends/iso.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/image/backends/iso.cc b/image/backends/iso.cc index 004cba8..46b1d63 100644 --- a/image/backends/iso.cc +++ b/image/backends/iso.cc @@ -144,6 +144,8 @@ bool write_etc_issue_to(fs::path target) { issue << "Welcome to Adélie Linux!" << std::endl << "You may log in as 'root' to install, or 'live' to play around." + << std::endl + << "The default root password is 'live' (without quotes)." << std::endl << std::endl << "Have fun." << std::endl; if(issue.fail() || issue.bad()) { |