a
This commit is contained in:
parent
8f3a47332f
commit
89c35cc1f3
1 changed files with 5 additions and 3 deletions
8
init.sh
8
init.sh
|
@ -25,7 +25,6 @@ http://dl-cdn.alpinelinux.org/alpine/edge/community
|
||||||
http://dl-cdn.alpinelinux.org/alpine/edge/testing
|
http://dl-cdn.alpinelinux.org/alpine/edge/testing
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
# Update Package List and Upgrade System
|
# Update Package List and Upgrade System
|
||||||
apk update
|
apk update
|
||||||
apk upgrade
|
apk upgrade
|
||||||
|
@ -38,14 +37,17 @@ EOF
|
||||||
|
|
||||||
apk add py3-grpcio py3-protobuf py3-tempita
|
apk add py3-grpcio py3-protobuf py3-tempita
|
||||||
;;
|
;;
|
||||||
"devuan")
|
"devuan"|"debian")
|
||||||
# Update Package List and Upgrade System
|
# Update Package List and Upgrade System
|
||||||
apt update
|
apt update
|
||||||
apt upgrade --yes
|
apt upgrade --yes
|
||||||
|
|
||||||
# Install QEMU
|
# Install QEMU
|
||||||
apt install qemu python3 ceph python-pip python3-pip etcd-client --yes
|
apt install qemu python3 ceph python-pip python3-pip etcd-client --yes
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Error"
|
||||||
|
exit 1
|
||||||
esac
|
esac
|
||||||
|
|
||||||
pip3 install --upgrade pip
|
pip3 install --upgrade pip
|
||||||
|
|
Loading…
Reference in a new issue