diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-03-25 09:01:01 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-03-25 09:01:01 +0200 |
commit | 9c34b8d3c45b2bbc1098b2ea0e002e4b5d5c4f86 (patch) | |
tree | 2ecf4bbb09c1aa5bfab8a206bbdf9c29619e301e /bootstrap | |
parent | ea81317d3757f625c6728ef8b1bd512aa3393332 (diff) |
Update OS name
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -210,6 +210,30 @@ rm -f /etc/localtime cp /usr/share/zoneinfo/UTC /etc/localtime chattr +i /etc/localtime +# Change /etc/os-release, /etc/issue, /etc/motd. +# +cat <<EOF1 >/etc/os-release +NAME="Build OS" +VERSION="0.5.0" +ID=buildos +ID_LIKE=debian +PRETTY_NAME="Build OS 0.5.0 (Based on Debian)" +VERSION_ID="0.5" +HOME_URL="https://build2.org/" +SUPPORT_URL="https://lists.build2.org/" +BUG_REPORT_URL="https://lists.build2.org/" +EOF1 + +cat <<EOF1 >/etc/issue +Build OS 0.5.0 (Based on Debian) \n \l + +EOF1 + +cat <<EOF1 >/etc/motd +Welcome to Build OS 0.5.0 (https://build2.org)! + +EOF1 + # Set root password. # chpasswd <<<'root:$passwd' |