mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
4a1d6f11b3
* Fix Github references from boostchicken to boostchicken-dev * Download CNI bridge script from upstream rather than fork The remote_install.sh script was retrieving the 05-cni-bridge.sh script from gtrabanco's fork, rather than the main repository. * Rename 05-cni-bridge.sh to 06-cni-bridge.sh
50 lines
1.7 KiB
Bash
50 lines
1.7 KiB
Bash
#!/bin/sh
|
|
|
|
mkdir -p /mnt/data/.cache
|
|
|
|
PODMAN_VERSION=3.3.0
|
|
RUNC_VERSION=1.0.2
|
|
CONMON_VERSION=2.0.29
|
|
PODMAN_DL=/mnt/data/.cache/podman-$PODMAN_VERSION
|
|
RUNC_DL=/mnt/data/.cache/runc-$RUNC_VERSION
|
|
CONMON_DL=/mnt/data/.cache/conmon-$CONMON_VERSION
|
|
SECCOMP=/usr/share/containers/seccomp.json
|
|
|
|
while [ ! -f $CONMON_DL ]; do
|
|
curl -fsSLo $CONMON_DL https://github.com/boostchicken-dev/udm-utilities/blob/master/podman-update/bin/conmon-$CONMON_VERSION?raw=true
|
|
sleep 1
|
|
done
|
|
chmod +x $CONMON_DL
|
|
if [ ! -f /usr/libexec/podman/conmon.old ]; then
|
|
mv /usr/libexec/podman/conmon /usr/libexec/podman/conmon.old
|
|
fi
|
|
ln -s $CONMON_DL /usr/libexec/podman/conmon
|
|
|
|
if [ ! -f $PODMAN_DL ]; then
|
|
curl -fsSLo $PODMAN_DL https://github.com/boostchicken-dev/udm-utilities/blob/master/podman-update/bin/podman-$PODMAN_VERSION?raw=true
|
|
fi
|
|
chmod +x $PODMAN_DL
|
|
if [ ! -f /usr/bin/podman.old ]; then
|
|
mv /usr/bin/podman /usr/bin/podman.old
|
|
fi
|
|
ln -s $PODMAN_DL /usr/bin/podman
|
|
|
|
if [ ! -f $RUNC_DL ]; then
|
|
curl -fsSLo $RUNC_DL https://github.com/boostchicken-dev/udm-utilities/blob/master/podman-update/bin/runc-$RUNC_VERSION?raw=true
|
|
fi
|
|
chmod +x $RUNC_DL
|
|
if [ ! -f /usr/bin/runc.old ]; then
|
|
mv /usr/bin/runc /usr/bin/runc.old
|
|
fi
|
|
ln -s $RUNC_DL /usr/bin/runc
|
|
|
|
if [ ! -f $SECCOMP ]; then
|
|
mkdir -p /usr/share/containers/
|
|
curl -fsSLo $SECCOMP https://github.com/boostchicken-dev/udm-utilities/blob/master/podman-update/bin/seccomp.json?raw=true
|
|
fi
|
|
sed -i 's/driver = ""/driver = "overlay"/' /etc/containers/storage.conf
|
|
sed -i 's/ostree_repo = ""/#ostree_repo = ""/' /etc/containers/storage.conf
|
|
# Comment out if you don't want to enable docker-compose or remote docker admin
|
|
/usr/bin/podman system service --time=0 tcp:0.0.0.0:2375 &
|
|
|