From c506c68206925c4b9bfc562f22fad9a5a594929d Mon Sep 17 00:00:00 2001 From: Caleb Burke Date: Tue, 12 May 2026 01:53:04 -0700 Subject: [PATCH] test commit --- README.md | 7 +++++++ ibgw.sh | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 ibgw.sh diff --git a/README.md b/README.md index 5e08d6d..de7b913 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,9 @@ # ibgw +## Install + +Run the command below in the Proxmox VE Shell or a VM to install ibgw. + +```bash +bash -c "$(curl -fsSL http://git.burke.lan:3000/alphane/ibgw/src/branch/main/ibgw.sh)" +``` diff --git a/ibgw.sh b/ibgw.sh new file mode 100644 index 0000000..9bd597d --- /dev/null +++ b/ibgw.sh @@ -0,0 +1,23 @@ +#!/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 \ No newline at end of file