Compare commits

...

2 Commits

Author SHA1 Message Date
64646430f6 Merge branch 'master' of github.com:flynx/proxmox-utils 2024-02-07 08:55:27 +03:00
58216d522a docs...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2024-02-07 08:55:16 +03:00
2 changed files with 16 additions and 2 deletions

View File

@ -179,8 +179,6 @@ normpath(){
# xread [-n] MSG VAR # xread [-n] MSG VAR
# #
# This saves all user input variables to the $XREAD_VARS array. # This saves all user input variables to the $XREAD_VARS array.
#
# XXX add support for keywords like SKIP and DISABLE
xread(){ xread(){
local non_empty= local non_empty=
if [[ $1 == '-n' ]] ; then if [[ $1 == '-n' ]] ; then

View File

@ -93,6 +93,22 @@ ssh facing lan to avoid a single point of failure with gate
## Setup ## Setup
```shell
git clone https://github.com/flynx/proxmox-utils.git
```
or:
```shell
git clone git@github.com:flynx/proxmox-utils.git
```
For a clean host setup:
```shell
sudo make host
```
Install CT's:
```shell ```shell
sudo make all sudo make all
``` ```