mirror of
https://github.com/containers/podman.git
synced 2025-07-02 08:47:43 +08:00
remove hack/install_catatonit.sh
This was not updated to the latest versions and CI and basically any user should get in from their distro repos. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
6
Makefile
6
Makefile
@ -756,7 +756,7 @@ system.test-binary: .install.ginkgo
|
||||
$(GO) test -c ./test/system
|
||||
|
||||
.PHONY: test-binaries
|
||||
test-binaries: test/checkseccomp/checkseccomp test/goecho/goecho install.catatonit test/version/version
|
||||
test-binaries: test/checkseccomp/checkseccomp test/goecho/goecho test/version/version
|
||||
@echo "Canonical source version: $(call err_if_empty,RELEASE_VERSION)"
|
||||
|
||||
.PHONY: tests-included
|
||||
@ -877,10 +877,6 @@ rpm-install: package ## Install rpm packages
|
||||
.PHONY: install
|
||||
install: install.bin install.remote install.man install.systemd ## Install binaries to system locations
|
||||
|
||||
.PHONY: install.catatonit
|
||||
install.catatonit:
|
||||
./hack/install_catatonit.sh
|
||||
|
||||
.PHONY: install.remote
|
||||
install.remote:
|
||||
install ${SELINUXOPT} -d -m 755 $(DESTDIR)$(BINDIR)
|
||||
|
@ -1,26 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
BASE_PATH="/usr/libexec/podman"
|
||||
CATATONIT_PATH="${BASE_PATH}/catatonit"
|
||||
CATATONIT_VERSION="v0.1.7"
|
||||
set -e
|
||||
|
||||
if [ -f $CATATONIT_PATH ] && [ -z "$1" ]; then
|
||||
echo "skipping ... catatonit is already installed"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "installing catatonit to $CATATONIT_PATH"
|
||||
buildDir=$(mktemp -d)
|
||||
git clone https://github.com/openSUSE/catatonit.git $buildDir
|
||||
|
||||
pushd $buildDir
|
||||
echo `pwd`
|
||||
git reset --hard ${CATATONIT_VERSION}
|
||||
autoreconf -fi
|
||||
./configure
|
||||
make
|
||||
install ${SELINUXOPT} -d -m 755 $BASE_PATH
|
||||
install ${SELINUXOPT} -m 755 catatonit $CATATONIT_PATH
|
||||
popd
|
||||
|
||||
rm -rf $buildDir
|
Reference in New Issue
Block a user