diff --git a/proxmox/proxmox-pve-essentials.sh b/proxmox/proxmox-pve-essentials.sh index f4be695..ebd3655 100755 --- a/proxmox/proxmox-pve-essentials.sh +++ b/proxmox/proxmox-pve-essentials.sh @@ -26,7 +26,7 @@ rm /etc/motd > /dev/null 2>&1 # set input preferences if [[ ! -f /etc/inputrc.default ]] - then wget -qO /etc/inputrc.default http://192.168.1.50/debian/inputrc.default + then wget -qO /etc/inputrc.default http://192.168.1.50:81/debian/inputrc.default fi rm /etc/inputrc > /dev/null 2>&1 cp /etc/inputrc.default /etc/inputrc @@ -35,7 +35,7 @@ echo "set completion-ignore-case On" >> /etc/inputrc # set bash preferences and aliases if [[ ! -f /etc/bash.bashrc.default ]] - then wget -qO /etc/bash.bashrc.default http://192.168.1.50/debian/bash.bashrc.default + then wget -qO /etc/bash.bashrc.default http://192.168.1.50:81/debian/bash.bashrc.default fi rm /etc/bash.bashrc > /dev/null 2>&1 cp /etc/bash.bashrc.default /etc/bash.bashrc @@ -64,7 +64,7 @@ echo "alias snano='sudo nano'" >> /etc/bash.bashrc echo "alias sreboot='sudo reboot'" >> /etc/bash.bashrc echo "alias spoweroff='sudo poweroff'" >> /etc/bash.bashrc echo "alias tf='sudo tail -f'" >> /etc/bash.bashrc -echo "alias aptupy='sudo apt update && sudo apt upgrade -y'" >> /etc/bash.bashrc +echo "alias aptupy='sudo apt update && sudo apt dist-upgrade -y'" >> /etc/bash.bashrc echo "alias aptiy='sudo apt install -y'" >> /etc/bash.bashrc echo "alias aptry='sudo apt remove -y'" >> /etc/bash.bashrc echo "alias aptrpy='sudo apt remove --purge -y'" >> /etc/bash.bashrc