diff options
author | Erik Mackdanz <stasibear@gentoo.org> | 2017-03-19 21:02:40 -0500 |
---|---|---|
committer | Erik Mackdanz <stasibear@gentoo.org> | 2017-03-19 21:02:40 -0500 |
commit | e3e0e087b3efc6d1ba2c93b8bbaa65c03b1ad2eb (patch) | |
tree | db97cffb19d1620bd381ace74f993cddf2b1879f /sys-fs/lxcfs/files | |
parent | sys-devel/binutils: alpha stable, bug 595288 (diff) | |
download | gentoo-e3e0e087b3efc6d1ba2c93b8bbaa65c03b1ad2eb.tar.gz gentoo-e3e0e087b3efc6d1ba2c93b8bbaa65c03b1ad2eb.tar.bz2 gentoo-e3e0e087b3efc6d1ba2c93b8bbaa65c03b1ad2eb.zip |
sys-fs/lxcfs: version bump to 2.0.6
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'sys-fs/lxcfs/files')
-rw-r--r-- | sys-fs/lxcfs/files/lxcfs-2.0.6-fusermount-path.patch | 11 | ||||
-rw-r--r-- | sys-fs/lxcfs/files/lxcfs-2.0.6.initd | 26 |
2 files changed, 37 insertions, 0 deletions
diff --git a/sys-fs/lxcfs/files/lxcfs-2.0.6-fusermount-path.patch b/sys-fs/lxcfs/files/lxcfs-2.0.6-fusermount-path.patch new file mode 100644 index 000000000000..61d3494fb7f3 --- /dev/null +++ b/sys-fs/lxcfs/files/lxcfs-2.0.6-fusermount-path.patch @@ -0,0 +1,11 @@ +--- /config/init/systemd/lxcfs.service.orig 2016-07-11 01:18:57.688074437 +0000 ++++ /config/init/systemd/lxcfs.service 2016-07-11 01:19:48.516477185 +0000 +@@ -7,7 +7,7 @@ + ExecStart=/usr/bin/lxcfs /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-2.0.6.initd b/sys-fs/lxcfs/files/lxcfs-2.0.6.initd new file mode 100644 index 000000000000..dfc5725f693f --- /dev/null +++ b/sys-fs/lxcfs/files/lxcfs-2.0.6.initd @@ -0,0 +1,26 @@ +#!/sbin/openrc-run +# Copyright 1999-2017 Gentoo Foundation +# 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 \ + -- \ + -f -o allow_other /var/lib/lxcfs + + eend $? +} + +stop() { + ebegin "Stopping lxcfs" + start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE} + eend $? +} |