diff options
author | 2020-06-26 10:52:10 +0300 | |
---|---|---|
committer | 2020-06-26 11:13:01 +0300 | |
commit | 233276e2457c31e779bf491af2b5462c247831cf (patch) | |
tree | f4690678c18e28e89d9f010b5ed8687eaf70e206 /sys-fs/lxcfs/files | |
parent | dev-libs/voikko-fi: add python-3.{8,9} support (diff) | |
download | gentoo-233276e2457c31e779bf491af2b5462c247831cf.tar.gz gentoo-233276e2457c31e779bf491af2b5462c247831cf.tar.bz2 gentoo-233276e2457c31e779bf491af2b5462c247831cf.zip |
sys-fs/lxcfs: remove old 3.0.3
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-fs/lxcfs/files')
-rw-r--r-- | sys-fs/lxcfs/files/lxcfs-fusermount-path.patch | 15 | ||||
-rw-r--r-- | sys-fs/lxcfs/files/lxcfs.initd | 26 |
2 files changed, 0 insertions, 41 deletions
diff --git a/sys-fs/lxcfs/files/lxcfs-fusermount-path.patch b/sys-fs/lxcfs/files/lxcfs-fusermount-path.patch deleted file mode 100644 index 99a5addf1d10..000000000000 --- a/sys-fs/lxcfs/files/lxcfs-fusermount-path.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- /config/init/systemd/lxcfs.service.orig 2018-10-13 17:24:46.534035126 -0500 -+++ /config/init/systemd/lxcfs.service 2018-10-13 17:25:33.007034294 -0500 -@@ -5,10 +5,10 @@ - Documentation=man:lxcfs(1) - - [Service] --ExecStart=/usr/bin/lxcfs /var/lib/lxcfs/ -+ExecStart=/usr/bin/lxcfs -o allow_other,nonempty /var/lib/lxcfs/ - KillMode=process - Restart=on-failure --ExecStopPost=-/bin/fusermount -u /var/lib/lxcfs -+ExecStopPost=-/usr/bin/fusermount -u /var/lib/lxcfs - Delegate=yes - - [Install] diff --git a/sys-fs/lxcfs/files/lxcfs.initd b/sys-fs/lxcfs/files/lxcfs.initd deleted file mode 100644 index 5997426fa8e8..000000000000 --- a/sys-fs/lxcfs/files/lxcfs.initd +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -DAEMON=/usr/bin/lxcfs -PIDFILE=/run/lxcfs.pid - -start() { - ebegin "Starting lxcfs" - - start-stop-daemon --start \ - --pidfile ${PIDFILE} \ - --exec ${DAEMON} \ - --background \ - --make-pidfile \ - -- \ - -o allow_other,nonempty /var/lib/lxcfs - - eend $? -} - -stop() { - ebegin "Stopping lxcfs" - start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE} - eend $? -} |