23 lines
389 B
Bash
23 lines
389 B
Bash
#!/usr/bin/env bash
|
|
|
|
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
|
|
APP="ibgw"
|
|
var_os="debian"
|
|
var_version="12"
|
|
var_cpu="2"
|
|
var_ram="4096"
|
|
var_disk="8"
|
|
|
|
header_info
|
|
|
|
base_settings
|
|
|
|
update_script() {
|
|
header_info
|
|
msg_info "Installing Dependencies"
|
|
apt-get install -y git curl sudo
|
|
msg_ok "Installed Dependencies"
|
|
}
|
|
|
|
start_script |