summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
author Andrew Clemons2022-03-04 10:10:29 +0100
committer Andrew Clemons2022-03-04 12:18:23 +0100
commit3bf04612c0762f18fff12865e5c57280439f0cce (patch)
tree643cb3ec806ecdc75d27c5f23993e70d4fd145d4 /system
parent82907dc60d1b7e53fe6395555b2a60e950ef09b4 (diff)
downloadslackbuilds-3bf04612c0762f18fff12865e5c57280439f0cce.tar.gz
system/lxd: Removed (ftb, no maintainer).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'system')
-rw-r--r--system/lxd/README3
-rw-r--r--system/lxd/doinst.sh29
-rw-r--r--system/lxd/etc-profile-d-lxd.csh3
-rw-r--r--system/lxd/etc-profile-d-lxd.sh3
-rw-r--r--system/lxd/lxd.SlackBuild102
-rw-r--r--system/lxd/lxd.info10
-rw-r--r--system/lxd/service-log-lxd-run43
-rw-r--r--system/lxd/service-lxd-run55
-rw-r--r--system/lxd/slack-desc19
9 files changed, 0 insertions, 267 deletions
diff --git a/system/lxd/README b/system/lxd/README
deleted file mode 100644
index 0a65c51c86..0000000000
--- a/system/lxd/README
+++ /dev/null
@@ -1,3 +0,0 @@
-LXD is a container "hypervisor" and a new user experience for LXC.
-
-This package includes scripts to run the lxd service under DJB daemontools.
diff --git a/system/lxd/doinst.sh b/system/lxd/doinst.sh
deleted file mode 100644
index 0b95a44d98..0000000000
--- a/system/lxd/doinst.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-config() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- # If there's no config file by that name, mv it over:
- if [ ! -r $OLD ]; then
- mv $NEW $OLD
- elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
- # toss the redundant copy
- rm $NEW
- fi
- # Otherwise, we leave the .new copy for the admin to consider...
-}
-
-preserve_perms() {
- NEW="$1"
- OLD="$(dirname $NEW)/$(basename $NEW .new)"
- if [ -e $OLD ]; then
- cp -a $OLD ${NEW}.incoming
- cat $NEW > ${NEW}.incoming
- mv ${NEW}.incoming $NEW
- fi
- config $NEW
-}
-
-preserve_perms etc/profile.d/lxd.sh.new
-preserve_perms etc/profile.d/lxd.csh.new
-
-config opt/lxd/service/run.new
-config opt/lxd/service/log/run.new
diff --git a/system/lxd/etc-profile-d-lxd.csh b/system/lxd/etc-profile-d-lxd.csh
deleted file mode 100644
index 01bead2ead..0000000000
--- a/system/lxd/etc-profile-d-lxd.csh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/csh
-setenv LXD_HOME /opt/lxd
-setenv PATH ${LXD_HOME}/bin:${PATH}
diff --git a/system/lxd/etc-profile-d-lxd.sh b/system/lxd/etc-profile-d-lxd.sh
deleted file mode 100644
index 3b9034b1ce..0000000000
--- a/system/lxd/etc-profile-d-lxd.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-export LXD_HOME=/opt/lxd
-export PATH=${LXD_HOME}/bin:${PATH}
diff --git a/system/lxd/lxd.SlackBuild b/system/lxd/lxd.SlackBuild
deleted file mode 100644
index 1eb3847300..0000000000
--- a/system/lxd/lxd.SlackBuild
+++ /dev/null
@@ -1,102 +0,0 @@
-#!/bin/bash
-
-# Slackware build script for lxd
-
-# Copyright 2017-2018 Vasco Santos <valexsantos[at]gmail[dot]com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-cd $(dirname $0) ; CWD=$(pwd)
-
-PRGNAM=lxd
-VERSION=${VERSION:-3.0.1}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-PKGTYPE=${PKGTYPE:-tgz}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
-# the name of the created package would be, and then exit. This information
-# could be useful to other scripts.
-if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
- echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
- exit 0
-fi
-
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-set -e
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-
-PREFIX=/opt/lxd
-
-mkdir -p $PKG/$PREFIX/bin
-export GOPATH=$TMP/$PRGNAM-$VERSION/dist
-go build -o $PKG$PREFIX/bin/lxd github.com/lxc/lxd/lxd
-go build -o $PKG$PREFIX/bin/lxc github.com/lxc/lxd/lxc
-go build -o $PKG$PREFIX/bin/fuidshift github.com/lxc/lxd/fuidshift
-go build -o $PKG$PREFIX/bin/lxd-p2c github.com/lxc/lxd/lxd-p2c
-cp -a scripts/lxc-to-lxd $PKG/$PREFIX/bin
-
-find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-
-mkdir -p $PKG/usr/man/man1
-help2man $PKG$PREFIX/bin/lxd -n "The container hypervisor - daemon" --no-info --no-discard-stderr > $PKG/usr/man/man1/lxd.1
-help2man $PKG$PREFIX/bin/lxc -n "The container hypervisor - client" --no-info --no-discard-stderr > $PKG/usr/man/man1/lxc.1
-help2man $PKG$PREFIX/bin/fuidshift -n "uid/gid shifter" --no-info --no-discard-stderr > $PKG/usr/man/man1/fuidshift.1
-help2man $PKG$PREFIX/bin/lxd-p2c -n "uid/gid shifter" --no-info --no-discard-stderr > $PKG/usr/man/man1/lxd-p2c.1
-
-find $PKG/usr/man -type f -exec gzip -9 {} \;
-for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-
-install -D -m0755 $CWD/service-log-lxd-run $PKG$PREFIX/service/log/run.new
-install -D -m0755 $CWD/service-lxd-run $PKG$PREFIX/service/run.new
-
-install -D -m0755 $CWD/etc-profile-d-lxd.sh $PKG/etc/profile.d/lxd.sh.new
-install -D -m0755 $CWD/etc-profile-d-lxd.csh $PKG/etc/profile.d/lxd.csh.new
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING README.md contributing.md \
- $PKG/usr/doc/$PRGNAM-$VERSION
-cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-cat $CWD/doinst.sh > $PKG/install/doinst.sh
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE
diff --git a/system/lxd/lxd.info b/system/lxd/lxd.info
deleted file mode 100644
index 2620e5a94b..0000000000
--- a/system/lxd/lxd.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="lxd"
-VERSION="3.0.1"
-HOMEPAGE="https://linuxcontainers.org"
-DOWNLOAD="https://linuxcontainers.org/downloads/lxd/lxd-3.0.1.tar.gz"
-MD5SUM="63f5937605f9ba861b4c5f617171920b"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="google-go-lang"
-MAINTAINER="Vasco Santos"
-EMAIL="valexsantos_at_gmail_dot_com"
diff --git a/system/lxd/service-log-lxd-run b/system/lxd/service-log-lxd-run
deleted file mode 100644
index 61fa33517d..0000000000
--- a/system/lxd/service-log-lxd-run
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/bash
-
-# generic daemontools log run script
-
-# Copyright 2017-2018 Vasco Santos <valexsantos[at]gmail[dot]com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-#
-# cfgs
-#
-LOGUSER=lxd
-LOGDIR=/var/log/$LOGUSER
-LOG_FILE_HISTORY=20
-LOG_FILE_SIZE=100000
-##
-# doit
-##
-PATH=/opt/daemontools/bin:/usr/local/bin:/usr/bin:/bin
-export PATH
-# create log dir
-[ -d $LOGDIR ] || mkdir $LOGDIR
-# set owner
-chown -R $LOGUSER $LOGDIR
-# go
-exec 2>&1
-exec setuidgid $LOGUSER multilog t s$LOG_FILE_SIZE n$LOG_FILE_HISTORY $LOGDIR
diff --git a/system/lxd/service-lxd-run b/system/lxd/service-lxd-run
deleted file mode 100644
index 622a6ae5cb..0000000000
--- a/system/lxd/service-lxd-run
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/bash
-
-# lxd daemontools run script
-
-# Copyright 2017-2018 Vasco Santos <valexsantos[at]gmail[dot]com>
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-exec 2>&1
-
-PATH="/usr/local/bin:/usr/bin:/bin:/sbin:/usr/sbin:/opt/daemontools/bin:/opt/lxd/bin"
-#
-# systemd support
-if [ ! -d /sys/fs/cgroup/systemd ]; then
- echo "mounting systemd support...."
- mkdir /sys/fs/cgroup/systemd
- mount -t cgroup -o rw,nosuid,nodev,noexec,relatime,none,name=systemd cgroup /sys/fs/cgroup/systemd
-fi
-
-CMD="lxd daemon --group=lxd"
-echo "command-line $CMD"
-
-##
-# Doit
-##
-ulimit -f unlimited
-ulimit -t unlimited
-ulimit -v unlimited
-ulimit -n 819200
-ulimit -m unlimited
-ulimit -u 819200
-
-exec $CMD
-
-##
-# err
-echo ERROR: command did not run correctly
-sleep 5
-exit 1
diff --git a/system/lxd/slack-desc b/system/lxd/slack-desc
deleted file mode 100644
index 4cc4ea1907..0000000000
--- a/system/lxd/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description.
-# Line up the first '|' above the ':' following the base package name, and
-# the '|' on the right side marks the last column you can put a character in.
-# You must make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-lxd: lxd (container hypervisor for lxc)
-lxd:
-lxd: LXD is a container "hypervisor" and a new user experience for LXC.
-lxd:
-lxd: Homepage: https://linuxcontainers.org
-lxd:
-lxd:
-lxd:
-lxd:
-lxd:
-lxd: