diff options
author | Erik Mackdanz <stasibear@gentoo.org> | 2016-10-29 04:32:13 +0000 |
---|---|---|
committer | Erik Mackdanz <stasibear@gentoo.org> | 2016-10-29 04:32:13 +0000 |
commit | eb97b372e9bf98e02c65c797a4a8b6ab2291c6c0 (patch) | |
tree | 2be1c8ebf0d1755e67d1f4bf39c084a3082f19b6 /app-emulation/lxd/files | |
parent | dev-libs/engine_pkcs11: version bump (diff) | |
download | gentoo-eb97b372e9bf98e02c65c797a4a8b6ab2291c6c0.tar.gz gentoo-eb97b372e9bf98e02c65c797a4a8b6ab2291c6c0.tar.bz2 gentoo-eb97b372e9bf98e02c65c797a4a8b6ab2291c6c0.zip |
app-emulation/lxd: Bump to 2.5
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-emulation/lxd/files')
-rw-r--r-- | app-emulation/lxd/files/lxd-2.5-dont-go-get.patch | 22 | ||||
-rw-r--r-- | app-emulation/lxd/files/lxd-2.5.confd | 27 | ||||
-rw-r--r-- | app-emulation/lxd/files/lxd-2.5.initd | 50 |
3 files changed, 99 insertions, 0 deletions
diff --git a/app-emulation/lxd/files/lxd-2.5-dont-go-get.patch b/app-emulation/lxd/files/lxd-2.5-dont-go-get.patch new file mode 100644 index 000000000000..9402de57735a --- /dev/null +++ b/app-emulation/lxd/files/lxd-2.5-dont-go-get.patch @@ -0,0 +1,22 @@ +--- /Makefile.orig 2016-07-11 23:34:40.299664675 +0000 ++++ /Makefile 2016-07-11 23:37:00.816018727 +0000 +@@ -12,19 +12,11 @@ + + .PHONY: default + default: +- # Must a few times due to go get race +- -go get -t -v -d ./... +- -go get -t -v -d ./... +- -go get -t -v -d ./... + go install -v $(DEBUG) ./... + @echo "LXD built successfully" + + .PHONY: client + client: +- # Must a few times due to go get race +- -go get -t -v -d ./... +- -go get -t -v -d ./... +- -go get -t -v -d ./... + go install -v $(DEBUG) ./lxc + @echo "LXD client built successfully" + diff --git a/app-emulation/lxd/files/lxd-2.5.confd b/app-emulation/lxd/files/lxd-2.5.confd new file mode 100644 index 000000000000..3d553276a5e3 --- /dev/null +++ b/app-emulation/lxd/files/lxd-2.5.confd @@ -0,0 +1,27 @@ +# Group which owns the shared socket +LXD_OPTIONS+=" --group lxd" + + + +# Enable cpu profiling into the specified file +#LXD_OPTIONS+=" --cpuprofile /tmp/lxc_cpu_profile" + +# Enable memory profiling into the specified file +#LXD_OPTIONS+=" --memprofile /tmp/lxc_mem_profile" + + + +# Enables debug mode +#LXD_OPTIONS+=" --debug" + +# For debugging, print a complete stack trace every n seconds +#LXD_OPTIONS+=" --print-goroutines-every 5" + +# Enables verbose mode +#LXD_OPTIONS+=" -v" + +# Logfile to log to +#LXD_OPTIONS+=" --logfile /var/log/lxd/lxd.log" + +# Enables syslog logging +#LXD_OPTIONS+=" --syslog" diff --git a/app-emulation/lxd/files/lxd-2.5.initd b/app-emulation/lxd/files/lxd-2.5.initd new file mode 100644 index 000000000000..c1aef377ab6f --- /dev/null +++ b/app-emulation/lxd/files/lxd-2.5.initd @@ -0,0 +1,50 @@ +#!/sbin/openrc-run +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DAEMON=/usr/sbin/lxd +PIDFILE=/run/lxd.pid + +extra_commands="stopall" + +depend() { + need net + use lxcfs + + # remove with 2.0 release + need cgmanager +} + +start() { + ebegin "Starting lxd server" + + start-stop-daemon --start \ + --pidfile ${PIDFILE} \ + --exec ${DAEMON} \ + --background \ + --make-pidfile \ + -- \ + ${LXD_OPTIONS} + + eend $? +} + +stop() { + if [[ $RC_GOINGDOWN = YES ]] || [[ $RC_REBOOT = YES ]]; then + stopall + else + ebegin "Stopping lxd service (but not containers)" + start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE} + eend $? + fi +} + +stopall() { + ebegin "Stopping lxd service and containers" + if "${DAEMON}" shutdown; then + /etc/init.d/lxd zap + rm -f ${PIDFILE} + fi + eend $? +} |