summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Mackdanz <stasibear@gentoo.org>2016-01-28 10:51:33 -0600
committerErik Mackdanz <stasibear@gentoo.org>2016-01-28 10:51:33 -0600
commitdcb02e7b0405208eaa1655637deba2be830c3452 (patch)
treec4e550f0a2180e5cc3b0ee142fa3bcdf4486fb27 /sys-fs/lxcfs/files
parentsys-fs/lxcfs: bump to 0.17 (diff)
downloadgentoo-dcb02e7b0405208eaa1655637deba2be830c3452.tar.gz
gentoo-dcb02e7b0405208eaa1655637deba2be830c3452.tar.bz2
gentoo-dcb02e7b0405208eaa1655637deba2be830c3452.zip
sys-fs/lxcfs: Remove old
Package-Manager: portage-2.2.27
Diffstat (limited to 'sys-fs/lxcfs/files')
-rwxr-xr-xsys-fs/lxcfs/files/lxcfs-0.12.initd27
-rw-r--r--sys-fs/lxcfs/files/lxcfs-0.12.service13
2 files changed, 0 insertions, 40 deletions
diff --git a/sys-fs/lxcfs/files/lxcfs-0.12.initd b/sys-fs/lxcfs/files/lxcfs-0.12.initd
deleted file mode 100755
index a85021401a7d..000000000000
--- a/sys-fs/lxcfs/files/lxcfs-0.12.initd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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 $?
-}
diff --git a/sys-fs/lxcfs/files/lxcfs-0.12.service b/sys-fs/lxcfs/files/lxcfs-0.12.service
deleted file mode 100644
index ff737c7e78ce..000000000000
--- a/sys-fs/lxcfs/files/lxcfs-0.12.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=FUSE filesystem for LXC
-ConditionVirtualization=!container
-Before=lxc.service
-
-[Service]
-ExecStart=/usr/bin/lxcfs -f -o allow_other /var/lib/lxcfs
-KillMode=none
-Restart=on-failure
-ExecStop=/usr/bin/fusermount -u /var/lib/lxcfs
-
-[Install]
-WantedBy=multi-user.target