summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Mackdanz <stasibear@gentoo.org>2015-11-05 22:27:28 -0600
committerErik Mackdanz <stasibear@gentoo.org>2015-11-05 22:27:28 -0600
commit673818afcd17e5dec41804d97a08a2986a836738 (patch)
treeb30073b4ab5195cc10f39650ce0bfe543f64dd22 /app-emulation/lxd/files
parentapp-emulation/lxd: version bump to 0.21 (diff)
downloadgentoo-673818afcd17e5dec41804d97a08a2986a836738.tar.gz
gentoo-673818afcd17e5dec41804d97a08a2986a836738.tar.bz2
gentoo-673818afcd17e5dec41804d97a08a2986a836738.zip
app-emulation/lxd: remove old 0.16
Package-Manager: portage-2.2.23
Diffstat (limited to 'app-emulation/lxd/files')
-rw-r--r--app-emulation/lxd/files/lxd-0.16-dont-go-get.patch15
-rw-r--r--app-emulation/lxd/files/lxd-0.16-nc-binary-name.patch11
-rw-r--r--app-emulation/lxd/files/lxd-0.16.confd23
-rw-r--r--app-emulation/lxd/files/lxd-0.16.initd32
4 files changed, 0 insertions, 81 deletions
diff --git a/app-emulation/lxd/files/lxd-0.16-dont-go-get.patch b/app-emulation/lxd/files/lxd-0.16-dont-go-get.patch
deleted file mode 100644
index fbfcf1365016..000000000000
--- a/app-emulation/lxd/files/lxd-0.16-dont-go-get.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- Makefile.orig 2015-09-03 10:08:26.921410426 -0500
-+++ Makefile 2015-09-03 10:08:52.193408698 -0500
-@@ -12,12 +12,10 @@
-
- .PHONY: default
- default:
-- go get -t -v -d ./... || true
- go install -v ./...
-
- .PHONY: client
- client:
-- go get -t -v -d ./...
- go install -v ./lxc
-
- # This only needs to be done when migrate.proto is actually changed; since we
diff --git a/app-emulation/lxd/files/lxd-0.16-nc-binary-name.patch b/app-emulation/lxd/files/lxd-0.16-nc-binary-name.patch
deleted file mode 100644
index c81a3edb7298..000000000000
--- a/app-emulation/lxd/files/lxd-0.16-nc-binary-name.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- lxd/migration/rsync.go.orig 2015-08-21 12:05:15.098768663 -0500
-+++ lxd/migration/rsync.go 2015-08-21 12:06:15.899764506 -0500
-@@ -73,7 +73,7 @@
- * command (i.e. the command to run on --server). However, we're
- * hardcoding that at the other end, so we can just ignore it.
- */
-- rsyncCmd := fmt.Sprintf("sh -c \"nc -U %s\"", f.Name())
-+ rsyncCmd := fmt.Sprintf("sh -c \"nc.openbsd -U %s\"", f.Name())
- cmd := exec.Command("rsync", "-arvP", "--devices", "--partial", path, "localhost:/tmp/foo", "-e", rsyncCmd)
- if err := cmd.Start(); err != nil {
- return nil, nil, err
diff --git a/app-emulation/lxd/files/lxd-0.16.confd b/app-emulation/lxd/files/lxd-0.16.confd
deleted file mode 100644
index c3e6e681b885..000000000000
--- a/app-emulation/lxd/files/lxd-0.16.confd
+++ /dev/null
@@ -1,23 +0,0 @@
-LXD_OPTIONS=""
-
-# Group which owns the shared socket
-LXD_OPTIONS="${LXD_OPTIONS} --group lxd"
-
-
-
-# Enable cpu profiling into the specified file
-#LXD_OPTIONS="${LXD_OPTIONS} --cpuprofile ''"
-
-# Enable memory profiling into the specified file
-#LXD_OPTIONS="${LXD_OPTIONS} --memprofile ''"
-
-
-
-# Enables debug mode
-#LXD_OPTIONS="${LXD_OPTIONS} --debug"
-
-# For debugging, print a complete stack trace every n seconds
-#LXD_OPTIONS="${LXD_OPTIONS} --print-goroutines-every 5"
-
-# Enables verbose mode
-#LXD_OPTIONS="${LXD_OPTIONS} -v"
diff --git a/app-emulation/lxd/files/lxd-0.16.initd b/app-emulation/lxd/files/lxd-0.16.initd
deleted file mode 100644
index 2b75e51c8a64..000000000000
--- a/app-emulation/lxd/files/lxd-0.16.initd
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-DAEMON=/usr/sbin/lxd
-PIDFILE=/run/lxd.pid
-
-depend() {
- need cgmanager
- need net
-}
-
-start() {
- ebegin "Starting lxd server"
-
- start-stop-daemon --start \
- --pidfile ${PIDFILE} \
- --exec ${DAEMON} \
- --background \
- --make-pidfile \
- -- \
- ${LXD_OPTIONS}
-
- eend $?
-}
-
-stop() {
- ebegin "Stopping lxd server"
- start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE}
- eend $?
-}