diff --git a/templates/OpenRC/files/OpenRC.logrotate b/templates/OpenRC/files/OpenRC.logrotate new file mode 100644 index 0000000000..d4bb76dec9 --- /dev/null +++ b/templates/OpenRC/files/OpenRC.logrotate @@ -0,0 +1,5 @@ +/var/log/rc.log { + sharedscripts + copytruncate + missingok +} diff --git a/templates/OpenRC/template b/templates/OpenRC/template index 08bbbdd02d..c75204da3a 100644 --- a/templates/OpenRC/template +++ b/templates/OpenRC/template @@ -1,7 +1,7 @@ # Template file for 'OpenRC' pkgname=OpenRC version=0.5.0 -revision=2 +revision=3 wrksrc=openrc-${version} patch_files="xbps-locale-service.diff" distfiles="http://roy.marples.name/downloads/openrc/openrc-$version.tar.bz2" @@ -34,8 +34,7 @@ pre_configure() # Fix path for kbd stuff. for f in init.d/consolefont.in conf.d/consolefont; do - sed -i -e "s|/usr/share/consolefonts|/lib/kbd/consolefonts|g" \ - ${wrksrc}/${f} + sed -i -e "s|/usr/share|/lib/kbd|g" ${wrksrc}/${f} done } @@ -43,4 +42,6 @@ post_install() { install -D -m755 ${wrksrc}/support/sysvinit/inittab \ ${DESTDIR}/etc/inittab + install -D -m644 ${FILESDIR}/$pkgname.logrotate \ + ${DESTDIR}/etc/logrotate.d/OpenRC }