dracut: use -q in post-install kernel hook, install logrotate file.

This commit is contained in:
Juan RP 2012-05-29 18:54:23 +02:00
parent b837c7a9ed
commit a74fbd2283
2 changed files with 4 additions and 2 deletions

View file

@ -11,5 +11,5 @@ if [ ! -x /usr/bin/dracut ]; then
exit 0
fi
dracut --xz --force /boot/initramfs-${VERSION}.img ${VERSION}
dracut -q --xz --force /boot/initramfs-${VERSION}.img ${VERSION}
exit $?

View file

@ -1,7 +1,7 @@
# Template file for 'dracut'
pkgname=dracut
version=018
revision=4
revision=5
noarch=yes
build_style=gnu-makefile
make_build_args="sysconfdir=/etc systemdsystemunitdir=/lib/systemd/system"
@ -43,4 +43,6 @@ post_install() {
755 etc/kernel.d/post-install 10-dracut
vinstall ${FILESDIR}/kernel-hook-postrm \
755 etc/kernel.d/post-remove 10-dracut
# logrotate file.
vinstall dracut.logrotate 644 etc/logrotate.d dracut
}