78103dc7ca
hwclock service is useless with latest update to the kernel pkg, system time is set from RTC at boot. After reading a post from systemd's blog, I've found that running ntpd in a chroot is not the way with systemd.
19 lines
512 B
Text
19 lines
512 B
Text
# Template file for 'systemd-units'
|
|
pkgname=systemd-units
|
|
version=0.7
|
|
build_style=custom-install
|
|
short_desc="Void GNU/Linux systemd units"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://code.google.com/p/xbps"
|
|
long_desc="
|
|
$pkgname contains systemd units for a couple of Void GNU/Linux services."
|
|
|
|
noextract=yes
|
|
noarch=yes
|
|
|
|
do_install()
|
|
{
|
|
vmkdir lib/systemd/system
|
|
install -m644 ${FILESDIR}/*.service ${DESTDIR}/lib/systemd/system
|
|
install -m644 ${FILESDIR}/*.socket ${DESTDIR}/lib/systemd/system
|
|
}
|