xbps-base-files: provide /etc/issue. Bump to 0.17.
--HG-- extra : convert_revision : 861ab6b92004514043c42c0095eb0f638a91b170
This commit is contained in:
parent
0161d3bfd9
commit
8f87647a38
1
TODO
1
TODO
|
@ -1,4 +1,3 @@
|
||||||
* Create /etc/issue in xbps-base-files.
|
|
||||||
* Add a trigger for fc-cache.
|
* Add a trigger for fc-cache.
|
||||||
* Add a trigger to (un)register users/groups. Currently packages that
|
* Add a trigger to (un)register users/groups. Currently packages that
|
||||||
require user/groups use custom INSTALL/REMOVE scripts, which adds
|
require user/groups use custom INSTALL/REMOVE scripts, which adds
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
Welcome to XBPS \s \r \m (\l on \n)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'xbps-base-files'
|
# Template file for 'xbps-base-files'
|
||||||
pkgname=xbps-base-files
|
pkgname=xbps-base-files
|
||||||
version=0.24
|
version=0.25
|
||||||
build_style=custom-install
|
build_style=custom-install
|
||||||
short_desc="xbps base system files"
|
short_desc="xbps base system files"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
|
@ -13,7 +13,8 @@ base_chroot=yes
|
||||||
noarch=yes
|
noarch=yes
|
||||||
|
|
||||||
conf_files="/etc/profile /etc/hosts /etc/host.conf /etc/securetty
|
conf_files="/etc/profile /etc/hosts /etc/host.conf /etc/securetty
|
||||||
/etc/skel/.bash_profile /etc/skel/.bash_logout /etc/skel/.bashrc"
|
/etc/skel/.bash_profile /etc/skel/.bash_logout /etc/skel/.bashrc
|
||||||
|
/etc/issue"
|
||||||
|
|
||||||
do_install()
|
do_install()
|
||||||
{
|
{
|
||||||
|
@ -76,6 +77,7 @@ do_install()
|
||||||
install -m600 ${FILESDIR}/securetty ${DESTDIR}/etc
|
install -m600 ${FILESDIR}/securetty ${DESTDIR}/etc
|
||||||
install -m644 ${FILESDIR}/hosts ${DESTDIR}/etc
|
install -m644 ${FILESDIR}/hosts ${DESTDIR}/etc
|
||||||
install -m644 ${FILESDIR}/host.conf ${DESTDIR}/etc
|
install -m644 ${FILESDIR}/host.conf ${DESTDIR}/etc
|
||||||
|
install -m644 ${FILESDIR}/issue ${DESTDIR}/etc
|
||||||
|
|
||||||
install -d ${DESTDIR}/etc/profile.d
|
install -d ${DESTDIR}/etc/profile.d
|
||||||
install -m644 ${FILESDIR}/*.sh ${DESTDIR}/etc/profile.d
|
install -m644 ${FILESDIR}/*.sh ${DESTDIR}/etc/profile.d
|
||||||
|
|
Loading…
Reference in New Issue