2024-10-05 13:41:47 +03:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
|
2024-10-09 11:21:40 +03:00
|
|
|
# XXX should this be an interactive (env) option???
|
|
|
|
|
#PROXMOX_UTILS=git@github.com:flynx/proxmox-utils.git
|
|
|
|
|
PROXMOX_UTILS=${PROXMOX_UTILS:-https://github.com/flynx/proxmox-utils.git}
|
|
|
|
|
|
2024-10-17 12:06:41 +03:00
|
|
|
# keep this to the minimum, at this point...
|
2024-10-11 22:13:28 +03:00
|
|
|
apt install \
|
2024-10-19 20:05:30 +03:00
|
|
|
git make wget
|
2024-10-07 08:28:39 +03:00
|
|
|
|
2024-10-11 22:13:28 +03:00
|
|
|
git clone $PROXMOX_UTILS
|
2024-10-07 08:28:39 +03:00
|
|
|
|
2024-10-11 22:13:28 +03:00
|
|
|
cd proxmox-utils
|
2024-10-07 08:28:39 +03:00
|
|
|
|
2024-10-11 22:13:28 +03:00
|
|
|
make bootstrap
|
2024-10-07 08:28:39 +03:00
|
|
|
|
2024-10-05 13:41:47 +03:00
|
|
|
|
2024-10-08 15:50:49 +03:00
|
|
|
# vim:set ts=4 sw=4 nowrap :
|