Close #92: pmOS-specific /etc/motd, /etc/issue
This commit is contained in:
parent
706851e2da
commit
0a43d44c6f
2 changed files with 22 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
pkgname=postmarketos-base
|
pkgname=postmarketos-base
|
||||||
pkgver=1
|
pkgver=1
|
||||||
pkgrel=8
|
pkgrel=9
|
||||||
pkgdesc="Meta package for minimal postmarketos base"
|
pkgdesc="Meta package for minimal postmarketos base"
|
||||||
url="https://github.com/postmarketOS"
|
url="https://github.com/postmarketOS"
|
||||||
arch="noarch"
|
arch="noarch"
|
||||||
|
|
|
@ -25,3 +25,24 @@ for i in 1 2 3 4 5 6; do
|
||||||
[ "$i" == "1" ] && new="tty1::respawn:/bin/login -f $autologin"
|
[ "$i" == "1" ] && new="tty1::respawn:/bin/login -f $autologin"
|
||||||
sed -i -e "s.$old.$new.g" /etc/inittab
|
sed -i -e "s.$old.$new.g" /etc/inittab
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Adjust welcome messages /etc (unless the files have been modified)
|
||||||
|
if ! apk audit /etc | grep -q etc/issue; then
|
||||||
|
{
|
||||||
|
echo 'Welcome to postmarketOS'
|
||||||
|
echo 'Kernel \r on an \m (\l)'
|
||||||
|
} >/etc/issue
|
||||||
|
fi
|
||||||
|
if ! apk audit /etc | grep -q etc/motd; then
|
||||||
|
{
|
||||||
|
echo 'Welcome to postmarketOS!'
|
||||||
|
echo ''
|
||||||
|
echo 'This distribution is based on Alpine Linux.'
|
||||||
|
echo 'Read both our wikis to find a large amount of how-to guides and'
|
||||||
|
echo 'general information about administrating and development.'
|
||||||
|
echo 'See <https://postmarketos.org/wiki> and <https://wiki.alpinelinux.org>.'
|
||||||
|
echo ''
|
||||||
|
echo 'You may change this message by editing /etc/motd.'
|
||||||
|
echo ''
|
||||||
|
} >/etc/motd
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue