Compare commits

..

No commits in common. "536a96b65efb1843841f9035a418ea6b6550874f" and "d5ee52cc40882d817fd0eb0fec7f0b1f6de0821a" have entirely different histories.

2 changed files with 20 additions and 27 deletions

View File

@ -9,19 +9,19 @@ source <(curl -s https://raw.githubusercontent.com/tteck/Proxmox/main/misc/build
function header_info { function header_info {
clear clear
cat <<"EOF" cat <<"EOF"
__ __ __ ________ ___________
/ //_/_ __/ /_ ____ / _/ __ \/ ____/ ___/
/ ,< / / / / __ \/ __ \ / // /_/ / /_ \__ \
/ /| / /_/ / /_/ / /_/ / _/ // ____/ __/ ___/ /
/_/ |_\__,_/_.___/\____/ /___/_/ /_/ /____/
EOF EOF
} }
header_info header_info
echo -e "Loading..." echo -e "Loading..."
APP="Kubo" APP="IPFS"
var_disk="4" var_disk="4"
var_cpu="2" var_cpu="2"
var_ram="4096" var_ram="6144"
var_os="debian" var_os="debian"
var_version="12" var_version="12"
variables variables
@ -55,20 +55,14 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -f /usr/local/kubo ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -f /usr/local/kubo ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
RELEASE=$(wget -q https://github.com/ipfs/kubo/releases/latest -O - | grep "title>Release" | cut -d " " -f 4) msg_info "Updating $APP LXC"
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then apt-get update &>/dev/null
msg_info "Updating $APP LXC" apt-get -y upgrade &>/dev/null
apt-get update &>/dev/null wget -q "$(curl -s "https://api.github.com/repos/ipfs/kubo/releases/latest" | grep "linux-amd64.tar.gz" | grep "browser_download_url" | head -n 1 | cut -d\" -f4)"
apt-get -y upgrade &>/dev/null tar -xzf kubo*linux-amd64.tar.gz -C /usr/local
wget -q "https://github.com/ipfs/kubo/releases/download/${RELEASE}/kubo_${RELEASE}_linux-amd64.tar.gz" rm -rf kubo*linux-amd64.tar.gz
tar -xzf "kubo_${RELEASE}_linux-amd64.tar.gz" -C /usr/local systemctl restart ipfs.service
systemctl restart ipfs.service msg_ok "Updated $APP LXC"
echo "${RELEASE}" >/opt/${APP}_version.txt
rm "kubo_${RELEASE}_linux-amd64.tar.gz"
msg_ok "Updated $APP LXC"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"
fi
exit exit
} }

View File

@ -22,18 +22,15 @@ $STD apt-get install -y gpg
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing IPFS" msg_info "Installing IPFS"
RELEASE=$(wget -q https://github.com/ipfs/kubo/releases/latest -O - | grep "title>Release" | cut -d " " -f 4) wget -q "$(curl -s "https://api.github.com/repos/ipfs/kubo/releases/latest" | grep "linux-amd64.tar.gz" | grep "browser_download_url" | head -n 1 | cut -d\" -f4)"
$STD wget -q "https://github.com/ipfs/kubo/releases/download/${RELEASE}/kubo_${RELEASE}_linux-amd64.tar.gz" tar -xzf kubo*linux-amd64.tar.gz -C /usr/local
tar -xzf "kubo_${RELEASE}_linux-amd64.tar.gz" -C /usr/local
$STD ln -s /usr/local/kubo/ipfs /usr/local/bin/ipfs $STD ln -s /usr/local/kubo/ipfs /usr/local/bin/ipfs
$STD ipfs init ipfs init &>/dev/null
ipfs config Addresses.API /ip4/0.0.0.0/tcp/5001 ipfs config Addresses.API /ip4/0.0.0.0/tcp/5001
ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8080 ipfs config Addresses.Gateway /ip4/0.0.0.0/tcp/8080
LXCIP=$(hostname -I | awk '{print $1}') LXCIP=$(hostname -I | awk '{print $1}')
ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"http://${LXCIP}:5001\", \"http://localhost:3000\", \"http://127.0.0.1:5001\", \"https://webui.ipfs.io\", \"http://0.0.0.0:5001\"]" ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin "[\"http://${LXCIP}:5001\", \"http://localhost:3000\", \"http://127.0.0.1:5001\", \"https://webui.ipfs.io\", \"http://0.0.0.0:5001\"]"
ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["PUT", "POST"]' ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["PUT", "POST"]'
echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt"
$STD rm "kubo_${RELEASE}_linux-amd64.tar.gz"
msg_ok "Installed IPFS" msg_ok "Installed IPFS"
msg_info "Creating Service" msg_info "Creating Service"
@ -49,6 +46,7 @@ Restart=on-failure
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target
EOF EOF
systemctl -q daemon-reload
systemctl enable --now -q ipfs.service systemctl enable --now -q ipfs.service
msg_ok "Created Service" msg_ok "Created Service"
@ -56,6 +54,7 @@ motd_ssh
customize customize
msg_info "Cleaning up" msg_info "Cleaning up"
rm -rf kubo*linux-amd64.tar.gz
$STD apt-get -y autoremove $STD apt-get -y autoremove
$STD apt-get -y autoclean $STD apt-get -y autoclean
msg_ok "Cleaned" msg_ok "Cleaned"