13 lines
643 B
Bash
13 lines
643 B
Bash
#!/usr/bin/env bash
|
|
|
|
mkdir -p /usr/share/pve-patch/{images,scripts}
|
|
echo "- patch `pveversion`..."
|
|
echo "- download and copy files..."
|
|
wget -nc -qP /usr/share/pve-patch/images/ https://github.com/kosmonavtika/pve-patch/raw/master/images/{favicon.ico,logo-128.png,proxmox_logo.png}
|
|
rm -f /usr/share/pve-patch/scripts/{90pvepatch,apply.sh}
|
|
wget -qP /usr/share/pve-patch/scripts/ https://raw.githubusercontent.com/kosmonavtika/pve-patch/master/scripts/{90pvepatch,apply.sh}
|
|
chmod -R a+x /usr/share/pve-patch/scripts
|
|
cp -f /usr/share/pve-patch/scripts/90pvepatch /etc/apt/apt.conf.d/90pvepatch
|
|
/usr/share/pve-patch/scripts/apply.sh
|
|
echo "- done!"
|