add unzip
This commit is contained in:
parent
68da81452a
commit
56985c8032
11
install.sh
11
install.sh
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
|
||||
|
||||
# Setup script environment
|
||||
set -o errexit #Exit immediately if a pipeline returns a non-zero status
|
||||
set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell
|
||||
@ -10,6 +12,15 @@ alias die='EXIT=$? LINE=$LINENO error_exit'
|
||||
trap die ERR
|
||||
trap cleanup EXIT
|
||||
|
||||
#remove susbcription
|
||||
rm -rf /etc/apt/sources.list.d/pve-enterprise.list
|
||||
#add pve-no
|
||||
echo "deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription" > /etc/apt/sources.list.d/pve-no-subscription.list
|
||||
apt-get update
|
||||
apt-get install -y zip unzip parted util-linux
|
||||
|
||||
|
||||
|
||||
function error_exit() {
|
||||
trap - ERR
|
||||
local DEFAULT='Unknown failure occured.'
|
||||
|
Loading…
Reference in New Issue
Block a user