systemd-units: initial commit of package.
This commit is contained in:
parent
ca6d104307
commit
0e688a7d60
|
@ -0,0 +1,14 @@
|
|||
[Unit]
|
||||
Description=Network Manager
|
||||
After=syslog.target
|
||||
Wants=network.target
|
||||
Before=network.target
|
||||
|
||||
[Service]
|
||||
Type=dbus
|
||||
BusName=org.freedesktop.NetworkManager
|
||||
ExecStart=/usr/sbin/NetworkManager --no-daemon
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Alias=dbus-org.freedesktop.NetworkManager.service
|
|
@ -0,0 +1,19 @@
|
|||
# Template file for 'systemd-units'
|
||||
pkgname=systemd-units
|
||||
version=0.0.1
|
||||
build_style=custom-install
|
||||
short_desc="Vanilla GNU/Linux systemd units"
|
||||
maintainer="Mike Rossset<mike.rosset@gmail.com>"
|
||||
homepage="https://github.com/xtraeme/vanilla"
|
||||
checksum=b31983b27630b3ef99f68bd8382851a7963542c944b625bdbfd2f2ff301a02d3
|
||||
long_desc="
|
||||
$pkgname cantains systemd units for vanilla gnu/linux services"
|
||||
|
||||
noextract=yes
|
||||
noarch=yes
|
||||
|
||||
do_install()
|
||||
{
|
||||
mkdir -p $DESTDIR/lib/systemd/system
|
||||
install -D -m644 ${FILESDIR}/service/*.service ${DESTDIR}/lib/systemd/system/
|
||||
}
|
Loading…
Reference in New Issue