forked from Myceliandre/myc-manage
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
815 B
37 lines
815 B
#!/bin/bash
|
|
|
|
. /etc/shlib
|
|
|
|
include parse
|
|
include common
|
|
include pretty
|
|
|
|
|
|
Wrap -d "Updating 0k-charms" <<EOF || exit 1
|
|
cd /opt/apps/0k-charms
|
|
git pull -r
|
|
EOF
|
|
|
|
charm --debug apply docker-host
|
|
|
|
|
|
Wrap -d "Update pandachi-manage" <<EOF || exit 1
|
|
if ! [ -d "/opt/apps/pandachi-manage" ]; then
|
|
mkdir -p /opt/apps && cd /opt/apps
|
|
git clone git.0k.io:/var/git/0k/pandachi-manage.git
|
|
else
|
|
cd /opt/apps/pandachi-manage &&
|
|
git checkout master &&
|
|
git pull -r
|
|
fi
|
|
|
|
ln -sfn /opt/apps/pandachi-manage/bin/* /usr/local/sbin/
|
|
find -L /usr/local/sbin -maxdepth 1 -type l -ilname /opt/apps/pandachi-manage/bin/\* -delete
|
|
EOF
|
|
|
|
|
|
## there seem to be an error now within compose when trying to download let's encrypt image.
|
|
Wrap -d "Updating some docker images" <<EOF || exit 1
|
|
docker pull docker.0k.io/letsencrypt
|
|
EOF
|
|
|