[arch-commits] Commit in unrealircd/repos (20 files)
Sergej Pupykin
spupykin at archlinux.org
Mon Oct 10 10:49:00 UTC 2016
Date: Monday, October 10, 2016 @ 10:49:00
Author: spupykin
Revision: 191854
archrelease: copy trunk to community-i686, community-x86_64
Added:
unrealircd/repos/community-i686/PKGBUILD
(from rev 191853, unrealircd/trunk/PKGBUILD)
unrealircd/repos/community-i686/install.pl
(from rev 191853, unrealircd/trunk/install.pl)
unrealircd/repos/community-i686/unrealircd.install
(from rev 191853, unrealircd/trunk/unrealircd.install)
unrealircd/repos/community-i686/unrealircd.service
(from rev 191853, unrealircd/trunk/unrealircd.service)
unrealircd/repos/community-i686/unrealircd.tmpfiles.d
(from rev 191853, unrealircd/trunk/unrealircd.tmpfiles.d)
unrealircd/repos/community-x86_64/PKGBUILD
(from rev 191853, unrealircd/trunk/PKGBUILD)
unrealircd/repos/community-x86_64/install.pl
(from rev 191853, unrealircd/trunk/install.pl)
unrealircd/repos/community-x86_64/unrealircd.install
(from rev 191853, unrealircd/trunk/unrealircd.install)
unrealircd/repos/community-x86_64/unrealircd.service
(from rev 191853, unrealircd/trunk/unrealircd.service)
unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
(from rev 191853, unrealircd/trunk/unrealircd.tmpfiles.d)
Deleted:
unrealircd/repos/community-i686/PKGBUILD
unrealircd/repos/community-i686/install.pl
unrealircd/repos/community-i686/unrealircd.install
unrealircd/repos/community-i686/unrealircd.service
unrealircd/repos/community-i686/unrealircd.tmpfiles.d
unrealircd/repos/community-x86_64/PKGBUILD
unrealircd/repos/community-x86_64/install.pl
unrealircd/repos/community-x86_64/unrealircd.install
unrealircd/repos/community-x86_64/unrealircd.service
unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d
----------------------------------------+
/PKGBUILD | 136 +++++++++++++++++++++++++++++++
/install.pl | 10 ++
/unrealircd.install | 24 +++++
/unrealircd.service | 24 +++++
/unrealircd.tmpfiles.d | 2
community-i686/PKGBUILD | 68 ---------------
community-i686/install.pl | 5 -
community-i686/unrealircd.install | 12 --
community-i686/unrealircd.service | 12 --
community-i686/unrealircd.tmpfiles.d | 1
community-x86_64/PKGBUILD | 68 ---------------
community-x86_64/install.pl | 5 -
community-x86_64/unrealircd.install | 12 --
community-x86_64/unrealircd.service | 12 --
community-x86_64/unrealircd.tmpfiles.d | 1
15 files changed, 196 insertions(+), 196 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-i686/PKGBUILD 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Zerial <fernando at zerial.org>
-
-pkgname=unrealircd
-pkgver=4.0.6
-pkgrel=1
-pkgdesc="Open Source IRC Server"
-arch=('i686' 'x86_64')
-url="http://unrealircd.com"
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
- unrealircd.service
- unrealircd.tmpfiles.d
- install.pl)
-md5sums=('9503e3ef97d24fba106b490a5d4dd355'
- '677d8de0bae770488a2c1730f9475a51'
- '3ec519ea7dbe99696eb6c51dfc0d382a'
- '3a23792b03420fc578cf6688b1574ae3')
-
-prepare() {
- cd $srcdir/unrealircd-$pkgver
- sed -i \
- -e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
- -e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
- Makefile.in
-}
-
-build() {
- cd $srcdir/unrealircd-$pkgver
- ./configure \
- --with-pidfile=/run/unrealircd/ircd.pid \
- --with-showlistmodes \
- --enable-ssl=/usr \
- --with-bindir=/usr/bin \
- --with-datadir=/var/lib/unrealircd \
- --with-confdir=/etc/unrealircd \
- --with-modulesdir=/usr/lib/unrealircd \
- --with-logdir=/var/log/unrealircd \
- --with-cachedir=/var/cache/unrealircd \
- --with-docdir=/usr/share/doc/unrealircd \
- --with-tmpdir=/tmp \
- --with-scriptdir=/usr \
- --with-nick-history=2000 \
- --with-sendq=3000000 \
- --with-permissions=0644 \
- --with-fd-setsize=1024 \
- --enable-dynamic-linking
- make
-}
-
-package() {
- cd $srcdir/unrealircd-$pkgver
-
- export pkgdir
- make INSTALL=$srcdir/install.pl install
- mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
- cp $pkgdir/etc/unrealircd/examples/example.conf $pkgdir/etc/unrealircd/unrealircd.conf
- rm -rf $pkgdir/tmp
-
- install -Dm0644 $srcdir/unrealircd.service $pkgdir/usr/lib/systemd/system/unrealircd.service
- install -Dm0644 $srcdir/unrealircd.tmpfiles.d $pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
-}
Copied: unrealircd/repos/community-i686/PKGBUILD (from rev 191853, unrealircd/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Zerial <fernando at zerial.org>
+
+pkgname=unrealircd
+pkgver=4.0.7
+pkgrel=1
+pkgdesc="Open Source IRC Server"
+arch=('i686' 'x86_64')
+url="http://unrealircd.com"
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+ unrealircd.service
+ unrealircd.tmpfiles.d
+ install.pl)
+md5sums=('49a4cb9b2f957b36b6a4a12a14096e18'
+ '677d8de0bae770488a2c1730f9475a51'
+ '3ec519ea7dbe99696eb6c51dfc0d382a'
+ '3a23792b03420fc578cf6688b1574ae3')
+
+prepare() {
+ cd $srcdir/unrealircd-$pkgver
+ sed -i \
+ -e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
+ -e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
+ Makefile.in
+}
+
+build() {
+ cd $srcdir/unrealircd-$pkgver
+ ./configure \
+ --with-pidfile=/run/unrealircd/ircd.pid \
+ --with-showlistmodes \
+ --enable-ssl=/usr \
+ --with-bindir=/usr/bin \
+ --with-datadir=/var/lib/unrealircd \
+ --with-confdir=/etc/unrealircd \
+ --with-modulesdir=/usr/lib/unrealircd \
+ --with-logdir=/var/log/unrealircd \
+ --with-cachedir=/var/cache/unrealircd \
+ --with-docdir=/usr/share/doc/unrealircd \
+ --with-tmpdir=/tmp \
+ --with-scriptdir=/usr \
+ --with-nick-history=2000 \
+ --with-sendq=3000000 \
+ --with-permissions=0644 \
+ --with-fd-setsize=1024 \
+ --enable-dynamic-linking
+ make
+}
+
+package() {
+ cd $srcdir/unrealircd-$pkgver
+
+ export pkgdir
+ make INSTALL=$srcdir/install.pl install
+ mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
+ cp $pkgdir/etc/unrealircd/examples/example.conf $pkgdir/etc/unrealircd/unrealircd.conf
+ rm -rf $pkgdir/tmp
+
+ install -Dm0644 $srcdir/unrealircd.service $pkgdir/usr/lib/systemd/system/unrealircd.service
+ install -Dm0644 $srcdir/unrealircd.tmpfiles.d $pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
+}
Deleted: community-i686/install.pl
===================================================================
--- community-i686/install.pl 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-i686/install.pl 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,5 +0,0 @@
-#!/usr/bin/perl -w
-use Env qw(pkgdir);
-my $last = pop @ARGV;
-my $cmd = "/usr/bin/install ".(join ' ', at ARGV)." $pkgdir/$last";
-system($cmd);
Copied: unrealircd/repos/community-i686/install.pl (from rev 191853, unrealircd/trunk/install.pl)
===================================================================
--- community-i686/install.pl (rev 0)
+++ community-i686/install.pl 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,5 @@
+#!/usr/bin/perl -w
+use Env qw(pkgdir);
+my $last = pop @ARGV;
+my $cmd = "/usr/bin/install ".(join ' ', at ARGV)." $pkgdir/$last";
+system($cmd);
Deleted: community-i686/unrealircd.install
===================================================================
--- community-i686/unrealircd.install 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-i686/unrealircd.install 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,12 +0,0 @@
-post_install() {
- getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
- chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
- systemd-tmpfiles --create unrealircd.conf
- echo "SSL is enabled by default, so you need to create pem files"
- echo "unrealircd.conf needs adjustments"
- echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
-}
-
-post_upgrade() {
- post_install
-}
Copied: unrealircd/repos/community-i686/unrealircd.install (from rev 191853, unrealircd/trunk/unrealircd.install)
===================================================================
--- community-i686/unrealircd.install (rev 0)
+++ community-i686/unrealircd.install 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,12 @@
+post_install() {
+ getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
+ chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
+ systemd-tmpfiles --create unrealircd.conf
+ echo "SSL is enabled by default, so you need to create pem files"
+ echo "unrealircd.conf needs adjustments"
+ echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
+}
+
+post_upgrade() {
+ post_install
+}
Deleted: community-i686/unrealircd.service
===================================================================
--- community-i686/unrealircd.service 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-i686/unrealircd.service 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,12 +0,0 @@
-[Unit]
-Description=IRC daemon
-After=network.target remote-fs.target nss-lookup.target
-
-[Service]
-Type=forking
-User=ircd
-PIDFile=/run/unrealircd/ircd.pid
-ExecStart=/usr/bin/unrealircd
-
-[Install]
-WantedBy=multi-user.target
Copied: unrealircd/repos/community-i686/unrealircd.service (from rev 191853, unrealircd/trunk/unrealircd.service)
===================================================================
--- community-i686/unrealircd.service (rev 0)
+++ community-i686/unrealircd.service 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,12 @@
+[Unit]
+Description=IRC daemon
+After=network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+User=ircd
+PIDFile=/run/unrealircd/ircd.pid
+ExecStart=/usr/bin/unrealircd
+
+[Install]
+WantedBy=multi-user.target
Deleted: community-i686/unrealircd.tmpfiles.d
===================================================================
--- community-i686/unrealircd.tmpfiles.d 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-i686/unrealircd.tmpfiles.d 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1 +0,0 @@
-d /run/unrealircd 0755 ircd root -
Copied: unrealircd/repos/community-i686/unrealircd.tmpfiles.d (from rev 191853, unrealircd/trunk/unrealircd.tmpfiles.d)
===================================================================
--- community-i686/unrealircd.tmpfiles.d (rev 0)
+++ community-i686/unrealircd.tmpfiles.d 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1 @@
+d /run/unrealircd 0755 ircd root -
Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-x86_64/PKGBUILD 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Zerial <fernando at zerial.org>
-
-pkgname=unrealircd
-pkgver=4.0.6
-pkgrel=1
-pkgdesc="Open Source IRC Server"
-arch=('i686' 'x86_64')
-url="http://unrealircd.com"
-license=('GPL2')
-depends=('openssl' 'curl' 'c-ares')
-conflicts=('ircd')
-provides=('ircd')
-backup=('etc/unrealircd/unrealircd.conf')
-install=unrealircd.install
-source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
- unrealircd.service
- unrealircd.tmpfiles.d
- install.pl)
-md5sums=('9503e3ef97d24fba106b490a5d4dd355'
- '677d8de0bae770488a2c1730f9475a51'
- '3ec519ea7dbe99696eb6c51dfc0d382a'
- '3a23792b03420fc578cf6688b1574ae3')
-
-prepare() {
- cd $srcdir/unrealircd-$pkgver
- sed -i \
- -e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
- -e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
- Makefile.in
-}
-
-build() {
- cd $srcdir/unrealircd-$pkgver
- ./configure \
- --with-pidfile=/run/unrealircd/ircd.pid \
- --with-showlistmodes \
- --enable-ssl=/usr \
- --with-bindir=/usr/bin \
- --with-datadir=/var/lib/unrealircd \
- --with-confdir=/etc/unrealircd \
- --with-modulesdir=/usr/lib/unrealircd \
- --with-logdir=/var/log/unrealircd \
- --with-cachedir=/var/cache/unrealircd \
- --with-docdir=/usr/share/doc/unrealircd \
- --with-tmpdir=/tmp \
- --with-scriptdir=/usr \
- --with-nick-history=2000 \
- --with-sendq=3000000 \
- --with-permissions=0644 \
- --with-fd-setsize=1024 \
- --enable-dynamic-linking
- make
-}
-
-package() {
- cd $srcdir/unrealircd-$pkgver
-
- export pkgdir
- make INSTALL=$srcdir/install.pl install
- mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
- cp $pkgdir/etc/unrealircd/examples/example.conf $pkgdir/etc/unrealircd/unrealircd.conf
- rm -rf $pkgdir/tmp
-
- install -Dm0644 $srcdir/unrealircd.service $pkgdir/usr/lib/systemd/system/unrealircd.service
- install -Dm0644 $srcdir/unrealircd.tmpfiles.d $pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
-}
Copied: unrealircd/repos/community-x86_64/PKGBUILD (from rev 191853, unrealircd/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Zerial <fernando at zerial.org>
+
+pkgname=unrealircd
+pkgver=4.0.7
+pkgrel=1
+pkgdesc="Open Source IRC Server"
+arch=('i686' 'x86_64')
+url="http://unrealircd.com"
+license=('GPL2')
+depends=('openssl' 'curl' 'c-ares')
+conflicts=('ircd')
+provides=('ircd')
+backup=('etc/unrealircd/unrealircd.conf')
+install=unrealircd.install
+source=(https://www.unrealircd.org/unrealircd4/unrealircd-$pkgver.tar.gz
+ unrealircd.service
+ unrealircd.tmpfiles.d
+ install.pl)
+md5sums=('49a4cb9b2f957b36b6a4a12a14096e18'
+ '677d8de0bae770488a2c1730f9475a51'
+ '3ec519ea7dbe99696eb6c51dfc0d382a'
+ '3a23792b03420fc578cf6688b1574ae3')
+
+prepare() {
+ cd $srcdir/unrealircd-$pkgver
+ sed -i \
+ -e 's|$(INSTALL) -m 0700|$(INSTALL) -m 0755|g' \
+ -e 's|$(INSTALL) -m 0600|$(INSTALL) -m 0644|g' \
+ Makefile.in
+}
+
+build() {
+ cd $srcdir/unrealircd-$pkgver
+ ./configure \
+ --with-pidfile=/run/unrealircd/ircd.pid \
+ --with-showlistmodes \
+ --enable-ssl=/usr \
+ --with-bindir=/usr/bin \
+ --with-datadir=/var/lib/unrealircd \
+ --with-confdir=/etc/unrealircd \
+ --with-modulesdir=/usr/lib/unrealircd \
+ --with-logdir=/var/log/unrealircd \
+ --with-cachedir=/var/cache/unrealircd \
+ --with-docdir=/usr/share/doc/unrealircd \
+ --with-tmpdir=/tmp \
+ --with-scriptdir=/usr \
+ --with-nick-history=2000 \
+ --with-sendq=3000000 \
+ --with-permissions=0644 \
+ --with-fd-setsize=1024 \
+ --enable-dynamic-linking
+ make
+}
+
+package() {
+ cd $srcdir/unrealircd-$pkgver
+
+ export pkgdir
+ make INSTALL=$srcdir/install.pl install
+ mv $pkgdir/usr/unrealircd $pkgdir/etc/unrealircd/unrealircd
+ cp $pkgdir/etc/unrealircd/examples/example.conf $pkgdir/etc/unrealircd/unrealircd.conf
+ rm -rf $pkgdir/tmp
+
+ install -Dm0644 $srcdir/unrealircd.service $pkgdir/usr/lib/systemd/system/unrealircd.service
+ install -Dm0644 $srcdir/unrealircd.tmpfiles.d $pkgdir/usr/lib/tmpfiles.d/unrealircd.conf
+}
Deleted: community-x86_64/install.pl
===================================================================
--- community-x86_64/install.pl 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-x86_64/install.pl 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,5 +0,0 @@
-#!/usr/bin/perl -w
-use Env qw(pkgdir);
-my $last = pop @ARGV;
-my $cmd = "/usr/bin/install ".(join ' ', at ARGV)." $pkgdir/$last";
-system($cmd);
Copied: unrealircd/repos/community-x86_64/install.pl (from rev 191853, unrealircd/trunk/install.pl)
===================================================================
--- community-x86_64/install.pl (rev 0)
+++ community-x86_64/install.pl 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,5 @@
+#!/usr/bin/perl -w
+use Env qw(pkgdir);
+my $last = pop @ARGV;
+my $cmd = "/usr/bin/install ".(join ' ', at ARGV)." $pkgdir/$last";
+system($cmd);
Deleted: community-x86_64/unrealircd.install
===================================================================
--- community-x86_64/unrealircd.install 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-x86_64/unrealircd.install 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,12 +0,0 @@
-post_install() {
- getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
- chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
- systemd-tmpfiles --create unrealircd.conf
- echo "SSL is enabled by default, so you need to create pem files"
- echo "unrealircd.conf needs adjustments"
- echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
-}
-
-post_upgrade() {
- post_install
-}
Copied: unrealircd/repos/community-x86_64/unrealircd.install (from rev 191853, unrealircd/trunk/unrealircd.install)
===================================================================
--- community-x86_64/unrealircd.install (rev 0)
+++ community-x86_64/unrealircd.install 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,12 @@
+post_install() {
+ getent passwd ircd >/dev/null || useradd -r ircd -d /var/empty
+ chown -R ircd {etc,var/{cache,log,lib}}/unrealircd
+ systemd-tmpfiles --create unrealircd.conf
+ echo "SSL is enabled by default, so you need to create pem files"
+ echo "unrealircd.conf needs adjustments"
+ echo "See also: https://wiki.archlinux.org/index.php/UnrealIRCd"
+}
+
+post_upgrade() {
+ post_install
+}
Deleted: community-x86_64/unrealircd.service
===================================================================
--- community-x86_64/unrealircd.service 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-x86_64/unrealircd.service 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1,12 +0,0 @@
-[Unit]
-Description=IRC daemon
-After=network.target remote-fs.target nss-lookup.target
-
-[Service]
-Type=forking
-User=ircd
-PIDFile=/run/unrealircd/ircd.pid
-ExecStart=/usr/bin/unrealircd
-
-[Install]
-WantedBy=multi-user.target
Copied: unrealircd/repos/community-x86_64/unrealircd.service (from rev 191853, unrealircd/trunk/unrealircd.service)
===================================================================
--- community-x86_64/unrealircd.service (rev 0)
+++ community-x86_64/unrealircd.service 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1,12 @@
+[Unit]
+Description=IRC daemon
+After=network.target remote-fs.target nss-lookup.target
+
+[Service]
+Type=forking
+User=ircd
+PIDFile=/run/unrealircd/ircd.pid
+ExecStart=/usr/bin/unrealircd
+
+[Install]
+WantedBy=multi-user.target
Deleted: community-x86_64/unrealircd.tmpfiles.d
===================================================================
--- community-x86_64/unrealircd.tmpfiles.d 2016-10-10 10:48:37 UTC (rev 191853)
+++ community-x86_64/unrealircd.tmpfiles.d 2016-10-10 10:49:00 UTC (rev 191854)
@@ -1 +0,0 @@
-d /run/unrealircd 0755 ircd root -
Copied: unrealircd/repos/community-x86_64/unrealircd.tmpfiles.d (from rev 191853, unrealircd/trunk/unrealircd.tmpfiles.d)
===================================================================
--- community-x86_64/unrealircd.tmpfiles.d (rev 0)
+++ community-x86_64/unrealircd.tmpfiles.d 2016-10-10 10:49:00 UTC (rev 191854)
@@ -0,0 +1 @@
+d /run/unrealircd 0755 ircd root -
More information about the arch-commits
mailing list