From 3df2f479285a37f5737a02af2bc77f5b9cdbd6aa Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Thu, 17 Oct 2024 12:06:41 +0300 Subject: [PATCH] added bootstrap /usr/bin/vim... Signed-off-by: Alex A. Naanou --- .pct-helpers | 4 ++++ bootstrap.sh | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.pct-helpers b/.pct-helpers index 58668ea..9a4611d 100644 --- a/.pct-helpers +++ b/.pct-helpers @@ -10,6 +10,10 @@ CT_DIR=${CT_DIR:=/etc/pve/lxc/} # XXX +EDITOR=${EDITOR:-vim} + + + #---------------------------------------------------------------------- # XXX this is quite generic, might be a good idea to move this to a # seporate lib/file... diff --git a/bootstrap.sh b/bootstrap.sh index aa92b5c..affa897 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -8,9 +8,9 @@ PROXMOX_UTILS=${PROXMOX_UTILS:-https://github.com/flynx/proxmox-utils.git} apt update apt upgrade -# keep this to the minimum... +# keep this to the minimum, at this point... apt install \ - git make wget + git make git clone $PROXMOX_UTILS @@ -19,4 +19,5 @@ cd proxmox-utils make bootstrap + # vim:set ts=4 sw=4 nowrap :