mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "ddd0a9ab4d30bebe2794c6f08c35ada3e6702be0" and "014b2dab554a8dcfc9962d81d2beb8696e86c5c6" have entirely different histories.
ddd0a9ab4d
...
014b2dab55
17
README.md
17
README.md
|
@ -1,16 +1,7 @@
|
|||
<h1 align="center">Proxmox VE Helper Scripts</h1>
|
||||
<h3><p align="center"><a href="https://github.com/tteck/Proxmox/blob/main/.github/CONTRIBUTING.md">Contributing to Proxmox VE Helper Scripts</a></p></h3>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://helper-scripts.com/">Visit the project website</a> |
|
||||
<a href="https://github.com/tteck/Proxmox/blob/main/.github/CONTRIBUTING.md">Contribute to Helper Scripts</a>
|
||||
</p>
|
||||
<sub>These scripts empower users to create a Linux container or virtual machine interactively, providing choices for both simple and advanced configurations. The basic setup adheres to default settings, while the advanced setup gives users the ability to customize these defaults. Utilizing the whiptail command, options are displayed to users in a dialog box format. Once the user makes their selections, the script collects and validates their input to generate the final configuration for the container or virtual machine.</sub>
|
||||
|
||||
---
|
||||
|
||||
These scripts empower users to create a Linux container or virtual machine interactively, providing choices for both simple and advanced configurations. The basic setup adheres to default settings, while the advanced setup gives users the ability to customize these defaults.
|
||||
|
||||
Utilizing the whiptail command, options are displayed to users in a dialog box format. Once the user makes their selections, the script collects and validates their input to generate the final configuration for the container or virtual machine.
|
||||
<p align="center">
|
||||
Be cautious and thoroughly evaluate scripts and automation tasks obtained from external sources. <a href="https://github.com/tteck/Proxmox/blob/main/CODE-AUDIT.md">Read more</a>
|
||||
</p>
|
||||
<h1><p align="center"><a href="https://tteck.github.io/Proxmox/">Proxmox VE Helper Scripts</a></p></h1>
|
||||
<sub><p align="center"><a href="https://github.com/tteck/Proxmox/blob/main/CODE-AUDIT.md">Exercise caution and conduct a comprehensive assessment of scripts and automation tasks acquired from external sources.</a></p></sub>
|
||||
<sub><div align="center"> Proxmox® is a registered trademark of Proxmox Server Solutions GmbH. </div></sub>
|
||||
|
|
|
@ -53,21 +53,7 @@ function default_settings() {
|
|||
function update_script() {
|
||||
header_info
|
||||
if [[ ! -d /opt/linkwarden ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
|
||||
msg_info "Updating $APP"
|
||||
systemctl stop linkwarden
|
||||
cd /opt/linkwarden
|
||||
if git pull | grep -q 'Already up to date'; then
|
||||
msg_ok "Already up to date"
|
||||
systemctl start linkwarden
|
||||
exit
|
||||
fi
|
||||
git pull
|
||||
yarn
|
||||
npx playwright install-deps
|
||||
yarn build
|
||||
yarn prisma migrate deploy
|
||||
systemctl start linkwarden
|
||||
msg_ok "Updated $APP"
|
||||
msg_error "There is currently no update path available."
|
||||
exit
|
||||
}
|
||||
|
||||
|
|
|
@ -408,7 +408,7 @@ qm importdisk $VMID ${FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null
|
|||
qm set $VMID \
|
||||
-efidisk0 ${DISK0_REF}${FORMAT} \
|
||||
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=2G \
|
||||
-ide2 ${STORAGE}:cloudinit \
|
||||
-ide2 local-lvm:cloudinit \
|
||||
-boot order=scsi0 \
|
||||
-serial0 socket \
|
||||
-description "# Ubuntu 22.04 VM
|
||||
|
|
Loading…
Reference in New Issue