From 81be2a49c0a64afe119160709bd0c35e01403cb6 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 11:46:27 +0100 Subject: [PATCH 01/36] New Script: Ubuntu 24.10 VM (#1711) * New Script: Ubuntu 24.10 VM * Create ubuntu2410-vm.json * final state vm * add cloudinit * rename and add correct discussion --- json/ubuntu2410-vm.json | 34 +++ vm/ubuntu2410-vm.sh | 499 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 533 insertions(+) create mode 100644 json/ubuntu2410-vm.json create mode 100644 vm/ubuntu2410-vm.sh diff --git a/json/ubuntu2410-vm.json b/json/ubuntu2410-vm.json new file mode 100644 index 00000000..a1715368 --- /dev/null +++ b/json/ubuntu2410-vm.json @@ -0,0 +1,34 @@ +{ + "name": "Ubuntu 24.10", + "slug": "ubuntu2410-vm", + "categories": [ + 2 + ], + "date_created": "2025-01-24", + "type": "vm", + "updateable": false, + "privileged": false, + "interface_port": null, + "documentation": null, + "website": "https://ubuntu.com/", + "logo": "https://assets.ubuntu.com/v1/29985a98-ubuntu-logo32.png", + "description": "Ubuntu is a distribution based on Debian, designed to have regular releases and a consistent user experience.", + "install_methods": [ + { + "type": "default", + "script": "vm/ubuntu2410-vm.sh", + "resources": { + "cpu": 2, + "ram": 2048, + "hdd": 8, + "os": null, + "version": null + } + } + ], + "default_credentials": { + "username": null, + "password": null + }, + "notes": [] +} diff --git a/vm/ubuntu2410-vm.sh b/vm/ubuntu2410-vm.sh new file mode 100644 index 00000000..17edbe99 --- /dev/null +++ b/vm/ubuntu2410-vm.sh @@ -0,0 +1,499 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2025 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE + +function header_info { + clear + cat <<"EOF" + __ ____ __ ___ __ __ _______ _ ____ ___ + / / / / /_ __ ______ / /___ __ |__ \/ // / < / __ \ | | / / |/ / + / / / / __ \/ / / / __ \/ __/ / / / __/ / // /_ / / / / / | | / / /|_/ / +/ /_/ / /_/ / /_/ / / / / /_/ /_/ / / __/__ __/ / / /_/ / | |/ / / / / +\____/_.___/\__,_/_/ /_/\__/\__,_/ /____/ /_/ (_)_/\____/ |___/_/ /_/ + +EOF +} +header_info +echo -e "\n Loading..." +GEN_MAC=02:$(openssl rand -hex 5 | awk '{print toupper($0)}' | sed 's/\(..\)/\1:/g; s/.$//') +NEXTID=$(pvesh get /cluster/nextid) + +YW=$(echo "\033[33m") +BL=$(echo "\033[36m") +RD=$(echo "\033[01;31m") +BGN=$(echo "\033[4;92m") +GN=$(echo "\033[1;92m") +DGN=$(echo "\033[32m") +CL=$(echo "\033[m") + +CL=$(echo "\033[m") +BOLD=$(echo "\033[1m") +BFR="\\r\\033[K" +HOLD=" " +TAB=" " + +CM="${TAB}βœ”οΈ${TAB}${CL}" +CROSS="${TAB}βœ–οΈ${TAB}${CL}" +INFO="${TAB}πŸ’‘${TAB}${CL}" +OS="${TAB}πŸ–₯️${TAB}${CL}" +CONTAINERTYPE="${TAB}πŸ“¦${TAB}${CL}" +DISKSIZE="${TAB}πŸ’Ύ${TAB}${CL}" +CPUCORE="${TAB}🧠${TAB}${CL}" +RAMSIZE="${TAB}πŸ› οΈ${TAB}${CL}" +CONTAINERID="${TAB}πŸ†”${TAB}${CL}" +HOSTNAME="${TAB}🏠${TAB}${CL}" +BRIDGE="${TAB}πŸŒ‰${TAB}${CL}" +GATEWAY="${TAB}🌐${TAB}${CL}" +DEFAULT="${TAB}βš™οΈ${TAB}${CL}" +MACADDRESS="${TAB}πŸ”—${TAB}${CL}" +VLANTAG="${TAB}🏷️${TAB}${CL}" +CREATING="${TAB}πŸš€${TAB}${CL}" +ADVANCED="${TAB}🧩${TAB}${CL}" + +THIN="discard=on,ssd=1," +set -e +trap 'error_handler $LINENO "$BASH_COMMAND"' ERR +trap cleanup EXIT +function error_handler() { + local exit_code="$?" + local line_number="$1" + local command="$2" + local error_message="${RD}[ERROR]${CL} in line ${RD}$line_number${CL}: exit code ${RD}$exit_code${CL}: while executing command ${YW}$command${CL}" + echo -e "\n$error_message\n" + cleanup_vmid +} + +function cleanup_vmid() { + if qm status $VMID &>/dev/null; then + qm stop $VMID &>/dev/null + qm destroy $VMID &>/dev/null + fi +} + +function cleanup() { + popd >/dev/null + rm -rf $TEMP_DIR +} + +TEMP_DIR=$(mktemp -d) +pushd $TEMP_DIR >/dev/null +if whiptail --backtitle "Proxmox VE Helper Scripts" --title "Ubuntu 24.10 VM" --yesno "This will create a New Ubuntu 24.10 VM. Proceed?" 10 58; then + : +else + header_info && echo -e "${CROSS}${RD}User exited script${CL}\n" && exit +fi + +function msg_info() { + local msg="$1" + echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}" +} + +function msg_ok() { + local msg="$1" + echo -e "${BFR}${CM}${GN}${msg}${CL}" +} + +function msg_error() { + local msg="$1" + echo -e "${BFR}${CROSS}${RD}${msg}${CL}" +} + +function check_root() { + if [[ "$(id -u)" -ne 0 || $(ps -o comm= -p $PPID) == "sudo" ]]; then + clear + msg_error "Please run this script as root." + echo -e "\nExiting..." + sleep 2 + exit + fi +} + +function pve_check() { + if ! pveversion | grep -Eq "pve-manager/8.[1-3]"; then + msg_error "${CROSS}${RD}This version of Proxmox Virtual Environment is not supported" + echo -e "Requires Proxmox Virtual Environment Version 8.1 or later." + echo -e "Exiting..." + sleep 2 + exit + fi +} + +function arch_check() { + if [ "$(dpkg --print-architecture)" != "amd64" ]; then + echo -e "\n ${INFO}${YWB}This script will not work with PiMox! \n" + echo -e "\n ${YWB}Visit https://github.com/asylumexp/Proxmox for ARM64 support. \n" + echo -e "Exiting..." + sleep 2 + exit + fi +} + +function ssh_check() { + if command -v pveversion >/dev/null 2>&1; then + if [ -n "${SSH_CLIENT:+x}" ]; then + if whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "SSH DETECTED" --yesno "It's suggested to use the Proxmox shell instead of SSH, since SSH can create issues while gathering variables. Would you like to proceed with using SSH?" 10 62; then + echo "you've been warned" + else + clear + exit + fi + fi + fi +} + +function exit-script() { + clear + echo -e "\n${CROSS}${RD}User exited script${CL}\n" + exit +} + +function default_settings() { + VMID="$NEXTID" + FORMAT=",efitype=4m" + MACHINE="" + DISK_SIZE="8G" + DISK_CACHE="" + HN="ubuntu" + CPU_TYPE="" + CORE_COUNT="2" + RAM_SIZE="2048" + BRG="vmbr0" + MAC="$GEN_MAC" + VLAN="" + MTU="" + START_VM="yes" + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}${VMID}${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}i440fx${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}${DISK_SIZE}${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}${HN}${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}${CORE_COUNT}${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}${RAM_SIZE}${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}${BRG}${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}${MAC}${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}Default${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}Default${CL}" + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 24.10 VM using the above default settings${CL}" +} + +function advanced_settings() { + while true; do + if VMID=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Virtual Machine ID" 8 58 $NEXTID --title "VIRTUAL MACHINE ID" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z "$VMID" ]; then + VMID="$NEXTID" + fi + if pct status "$VMID" &>/dev/null || qm status "$VMID" &>/dev/null; then + echo -e "${CROSS}${RD} ID $VMID is already in use${CL}" + sleep 2 + continue + fi + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}$VMID${CL}" + break + else + exit-script + fi + done + + if MACH=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "MACHINE TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 10 58 2 \ + "i440fx" "Machine i440fx" ON \ + "q35" "Machine q35" OFF \ + 3>&1 1>&2 2>&3); then + if [ $MACH = q35 ]; then + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" + FORMAT="" + MACHINE=" -machine q35" + else + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" + FORMAT=",efitype=4m" + MACHINE="" + fi + else + exit-script + fi + + if DISK_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Disk Size in GiB (e.g., 10, 20)" 8 58 "$DISK_SIZE" --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + DISK_SIZE=$(echo "$DISK_SIZE" | tr -d ' ') + if [[ "$DISK_SIZE" =~ ^[0-9]+$ ]]; then + DISK_SIZE="${DISK_SIZE}G" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + elif [[ "$DISK_SIZE" =~ ^[0-9]+G$ ]]; then + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + else + echo -e "${DISKSIZE}${BOLD}${RD}Invalid Disk Size. Please use a number (e.g., 10 or 10G).${CL}" + exit-script + fi + else + exit-script + fi + + if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \ + "0" "None (Default)" ON \ + "1" "Write Through" OFF \ + 3>&1 1>&2 2>&3); then + if [ $DISK_CACHE = "1" ]; then + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}Write Through${CL}" + DISK_CACHE="cache=writethrough," + else + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" + DISK_CACHE="" + fi + else + exit-script + fi + + if VM_NAME=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Hostname" 8 58 ubuntu --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $VM_NAME ]; then + HN="ubuntu" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" + else + HN=$(echo ${VM_NAME,,} | tr -d ' ') + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" + fi + else + exit-script + fi + + if CPU_TYPE1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "CPU MODEL" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \ + "0" "KVM64 (Default)" ON \ + "1" "Host" OFF \ + 3>&1 1>&2 2>&3); then + if [ $CPU_TYPE1 = "1" ]; then + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}Host${CL}" + CPU_TYPE=" -cpu host" + else + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" + CPU_TYPE="" + fi + else + exit-script + fi + + if CORE_COUNT=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate CPU Cores" 8 58 2 --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $CORE_COUNT ]; then + CORE_COUNT="2" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" + else + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" + fi + else + exit-script + fi + + if RAM_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate RAM in MiB" 8 58 2048 --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $RAM_SIZE ]; then + RAM_SIZE="2048" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" + else + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" + fi + else + exit-script + fi + + if BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $BRG ]; then + BRG="vmbr0" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" + else + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" + fi + else + exit-script + fi + + if MAC1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $MAC1 ]; then + MAC="$GEN_MAC" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC${CL}" + else + MAC="$MAC1" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC1${CL}" + fi + else + exit-script + fi + + if VLAN1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Vlan(leave blank for default)" 8 58 --title "VLAN" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $VLAN1 ]; then + VLAN1="Default" + VLAN="" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" + else + VLAN=",tag=$VLAN1" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" + fi + else + exit-script + fi + + if MTU1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Interface MTU Size (leave blank for default)" 8 58 --title "MTU SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + if [ -z $MTU1 ]; then + MTU1="Default" + MTU="" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" + else + MTU=",mtu=$MTU1" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" + fi + else + exit-script + fi + + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "START VIRTUAL MACHINE" --yesno "Start VM when completed?" 10 58); then + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" + START_VM="yes" + else + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}no${CL}" + START_VM="no" + fi + + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create a Ubuntu 24.10 VM?" --no-button Do-Over 10 58); then + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 24.10 VM using the above advanced settings${CL}" + else + header_info + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" + advanced_settings + fi +} + +function start_script() { + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then + header_info + echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}" + default_settings + else + header_info + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" + advanced_settings + fi +} + +check_root +arch_check +pve_check +ssh_check +start_script + +msg_info "Validating Storage" +while read -r line; do + TAG=$(echo $line | awk '{print $1}') + TYPE=$(echo $line | awk '{printf "%-10s", $2}') + FREE=$(echo $line | numfmt --field 4-6 --from-unit=K --to=iec --format %.2f | awk '{printf( "%9sB", $6)}') + ITEM=" Type: $TYPE Free: $FREE " + OFFSET=2 + if [[ $((${#ITEM} + $OFFSET)) -gt ${MSG_MAX_LENGTH:-} ]]; then + MSG_MAX_LENGTH=$((${#ITEM} + $OFFSET)) + fi + STORAGE_MENU+=("$TAG" "$ITEM" "OFF") +done < <(pvesm status -content images | awk 'NR>1') +VALID=$(pvesm status -content images | awk 'NR>1') +if [ -z "$VALID" ]; then + msg_error "Unable to detect a valid storage location." + exit +elif [ $((${#STORAGE_MENU[@]} / 3)) -eq 1 ]; then + STORAGE=${STORAGE_MENU[0]} +else + while [ -z "${STORAGE:+x}" ]; do + STORAGE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "Storage Pools" --radiolist \ + "Which storage pool you would like to use for ${HN}?\nTo make a selection, use the Spacebar.\n" \ + 16 $(($MSG_MAX_LENGTH + 23)) 6 \ + "${STORAGE_MENU[@]}" 3>&1 1>&2 2>&3) || exit + done +fi +msg_ok "Using ${CL}${BL}$STORAGE${CL} ${GN}for Storage Location." +msg_ok "Virtual Machine ID is ${CL}${BL}$VMID${CL}." +msg_info "Retrieving the URL for the Ubuntu 24.0 Disk Image" +URL=https://cloud-images.ubuntu.com/oracular/current/oracular-server-cloudimg-amd64.img +sleep 2 +msg_ok "${CL}${BL}${URL}${CL}" +wget -q --show-progress $URL +echo -en "\e[1A\e[0K" +FILE=$(basename $URL) +msg_ok "Downloaded ${CL}${BL}${FILE}${CL}" + +STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}') +case $STORAGE_TYPE in +nfs | dir) + DISK_EXT=".qcow2" + DISK_REF="$VMID/" + DISK_IMPORT="-format qcow2" + THIN="" + ;; +btrfs) + DISK_EXT=".raw" + DISK_REF="$VMID/" + DISK_IMPORT="-format raw" + FORMAT=",efitype=4m" + THIN="" + ;; +esac +for i in {0,1}; do + disk="DISK$i" + eval DISK${i}=vm-${VMID}-disk-${i}${DISK_EXT:-} + eval DISK${i}_REF=${STORAGE}:${DISK_REF:-}${!disk} +done + +msg_info "Creating a Ubuntu 24.10 VM" +qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \ + -name $HN -tags proxmox-helper-scripts -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci +pvesm alloc $STORAGE $VMID $DISK0 4M 1>&/dev/null +qm importdisk $VMID ${FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null +qm set $VMID \ + -efidisk0 ${DISK0_REF}${FORMAT} \ + -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \ + -ide2 ${STORAGE}:cloudinit \ + -boot order=scsi0 \ + -serial0 socket >/dev/null +DESCRIPTION=$( + cat < + + Logo + + +

Ubuntu 24.10 VM

+ +

+ + spend Coffee + +

+ + + + GitHub + + + + Discussions + + + + Issues + + +EOF +) +qm set "$VMID" -description "$DESCRIPTION" >/dev/null +if [ -n "$DISK_SIZE" ]; then + msg_info "Resizing disk to $DISK_SIZE GB" + qm resize $VMID scsi0 ${DISK_SIZE} >/dev/null +else + msg_info "Using default disk size of $DEFAULT_DISK_SIZE GB" + qm resize $VMID scsi0 ${DEFAULT_DISK_SIZE} >/dev/null +fi + +msg_ok "Created a Ubuntu 24.10 VM ${CL}${BL}(${HN})" +if [ "$START_VM" == "yes" ]; then + msg_info "Starting Ubuntu 24.10 VM" + qm start $VMID + msg_ok "Started Ubuntu 24.10 VM" +fi + +msg_ok "Completed Successfully!\n" +echo -e "Setup Cloud-Init before starting \n +More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" From dc03df6f8a41218bae0791337f279454e8cb696e Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 11:51:15 +0100 Subject: [PATCH 02/36] add cifs support --- vm/ubuntu2410-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/ubuntu2410-vm.sh b/vm/ubuntu2410-vm.sh index 17edbe99..a512d81d 100644 --- a/vm/ubuntu2410-vm.sh +++ b/vm/ubuntu2410-vm.sh @@ -417,7 +417,7 @@ msg_ok "Downloaded ${CL}${BL}${FILE}${CL}" STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}') case $STORAGE_TYPE in -nfs | dir) +nfs | dir | cifs) DISK_EXT=".qcow2" DISK_REF="$VMID/" DISK_IMPORT="-format qcow2" From 38b692aaa392d1a1260abe248b9df7d5bf303aa7 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:01:55 +0100 Subject: [PATCH 03/36] Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support (#1714) * Update ubuntu2404-vm.sh * Update ubuntu2404-vm.json --- json/ubuntu2404-vm.json | 2 +- vm/ubuntu2404-vm.sh | 208 ++++++++++++++++++++++++++++------------ 2 files changed, 148 insertions(+), 62 deletions(-) diff --git a/json/ubuntu2404-vm.json b/json/ubuntu2404-vm.json index dbb7fa73..9c2b9a45 100644 --- a/json/ubuntu2404-vm.json +++ b/json/ubuntu2404-vm.json @@ -20,7 +20,7 @@ "resources": { "cpu": 2, "ram": 2048, - "hdd": 2, + "hdd": 7, "os": null, "version": null } diff --git a/vm/ubuntu2404-vm.sh b/vm/ubuntu2404-vm.sh index c789ecc9..b6b18809 100644 --- a/vm/ubuntu2404-vm.sh +++ b/vm/ubuntu2404-vm.sh @@ -22,17 +22,37 @@ GEN_MAC=02:$(openssl rand -hex 5 | awk '{print toupper($0)}' | sed 's/\(..\)/\1: NEXTID=$(pvesh get /cluster/nextid) YW=$(echo "\033[33m") -BL=$(echo "\033[36m") -HA=$(echo "\033[1;34m") +BL=$(echo "\033[36m") RD=$(echo "\033[01;31m") BGN=$(echo "\033[4;92m") GN=$(echo "\033[1;92m") DGN=$(echo "\033[32m") CL=$(echo "\033[m") + +CL=$(echo "\033[m") +BOLD=$(echo "\033[1m") BFR="\\r\\033[K" -HOLD="-" -CM="${GN}βœ“${CL}" -CROSS="${RD}βœ—${CL}" +HOLD=" " +TAB=" " + +CM="${TAB}βœ”οΈ${TAB}${CL}" +CROSS="${TAB}βœ–οΈ${TAB}${CL}" +INFO="${TAB}πŸ’‘${TAB}${CL}" +OS="${TAB}πŸ–₯️${TAB}${CL}" +CONTAINERTYPE="${TAB}πŸ“¦${TAB}${CL}" +DISKSIZE="${TAB}πŸ’Ύ${TAB}${CL}" +CPUCORE="${TAB}🧠${TAB}${CL}" +RAMSIZE="${TAB}πŸ› οΈ${TAB}${CL}" +CONTAINERID="${TAB}πŸ†”${TAB}${CL}" +HOSTNAME="${TAB}🏠${TAB}${CL}" +BRIDGE="${TAB}πŸŒ‰${TAB}${CL}" +GATEWAY="${TAB}🌐${TAB}${CL}" +DEFAULT="${TAB}βš™οΈ${TAB}${CL}" +MACADDRESS="${TAB}πŸ”—${TAB}${CL}" +VLANTAG="${TAB}🏷️${TAB}${CL}" +CREATING="${TAB}πŸš€${TAB}${CL}" +ADVANCED="${TAB}🧩${TAB}${CL}" + THIN="discard=on,ssd=1," set -e trap 'error_handler $LINENO "$BASH_COMMAND"' ERR @@ -63,22 +83,22 @@ pushd $TEMP_DIR >/dev/null if whiptail --backtitle "Proxmox VE Helper Scripts" --title "Ubuntu 24.04 VM" --yesno "This will create a New Ubuntu 24.04 VM. Proceed?" 10 58; then : else - header_info && echo -e "⚠ User exited script \n" && exit + header_info && echo -e "${CROSS}${RD}User exited script${CL}\n" && exit fi function msg_info() { local msg="$1" - echo -ne " ${HOLD} ${YW}${msg}..." + echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}" } function msg_ok() { local msg="$1" - echo -e "${BFR} ${CM} ${GN}${msg}${CL}" + echo -e "${BFR}${CM}${GN}${msg}${CL}" } function msg_error() { local msg="$1" - echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}" + echo -e "${BFR}${CROSS}${RD}${msg}${CL}" } function check_root() { @@ -93,17 +113,18 @@ function check_root() { function pve_check() { if ! pveversion | grep -Eq "pve-manager/8.[1-3]"; then - msg_error "This version of Proxmox Virtual Environment is not supported" + msg_error "${CROSS}${RD}This version of Proxmox Virtual Environment is not supported" echo -e "Requires Proxmox Virtual Environment Version 8.1 or later." echo -e "Exiting..." sleep 2 exit -fi + fi } function arch_check() { if [ "$(dpkg --print-architecture)" != "amd64" ]; then - msg_error "This script will not work with PiMox! \n" + echo -e "\n ${INFO}${YWB}This script will not work with PiMox! \n" + echo -e "\n ${YWB}Visit https://github.com/asylumexp/Proxmox for ARM64 support. \n" echo -e "Exiting..." sleep 2 exit @@ -125,7 +146,7 @@ function ssh_check() { function exit-script() { clear - echo -e "⚠ User exited script \n" + echo -e "\n${CROSS}${RD}User exited script${CL}\n" exit } @@ -133,6 +154,7 @@ function default_settings() { VMID="$NEXTID" FORMAT=",efitype=4m" MACHINE="" + DISK_SIZE="7G" DISK_CACHE="" HN="ubuntu" CPU_TYPE="" @@ -142,18 +164,21 @@ function default_settings() { MAC="$GEN_MAC" VLAN="" MTU="" - echo -e "${DGN}Using Virtual Machine ID: ${BGN}${VMID}${CL}" - echo -e "${DGN}Using Machine Type: ${BGN}i440fx${CL}" - echo -e "${DGN}Using Disk Cache: ${BGN}None${CL}" - echo -e "${DGN}Using Hostname: ${BGN}${HN}${CL}" - echo -e "${DGN}Using CPU Model: ${BGN}KVM64${CL}" - echo -e "${DGN}Allocated Cores: ${BGN}${CORE_COUNT}${CL}" - echo -e "${DGN}Allocated RAM: ${BGN}${RAM_SIZE}${CL}" - echo -e "${DGN}Using Bridge: ${BGN}${BRG}${CL}" - echo -e "${DGN}Using MAC Address: ${BGN}${MAC}${CL}" - echo -e "${DGN}Using VLAN: ${BGN}Default${CL}" - echo -e "${DGN}Using Interface MTU Size: ${BGN}Default${CL}" - echo -e "${BL}Creating an Ubuntu 24.04 VM using the above default settings${CL}" + START_VM="yes" + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}${VMID}${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}i440fx${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}${DISK_SIZE}${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}${HN}${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}${CORE_COUNT}${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}${RAM_SIZE}${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}${BRG}${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}${MAC}${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}Default${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}Default${CL}" + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 24.04 VM using the above default settings${CL}" } function advanced_settings() { @@ -167,7 +192,7 @@ function advanced_settings() { sleep 2 continue fi - echo -e "${DGN}Virtual Machine ID: ${BGN}$VMID${CL}" + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}$VMID${CL}" break else exit-script @@ -179,27 +204,42 @@ function advanced_settings() { "q35" "Machine q35" OFF \ 3>&1 1>&2 2>&3); then if [ $MACH = q35 ]; then - echo -e "${DGN}Using Machine Type: ${BGN}$MACH${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" FORMAT="" MACHINE=" -machine q35" else - echo -e "${DGN}Using Machine Type: ${BGN}$MACH${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" FORMAT=",efitype=4m" MACHINE="" fi else exit-script fi - + + if DISK_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Disk Size in GiB (e.g., 10, 20)" 8 58 "$DISK_SIZE" --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + DISK_SIZE=$(echo "$DISK_SIZE" | tr -d ' ') + if [[ "$DISK_SIZE" =~ ^[0-9]+$ ]]; then + DISK_SIZE="${DISK_SIZE}G" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + elif [[ "$DISK_SIZE" =~ ^[0-9]+G$ ]]; then + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + else + echo -e "${DISKSIZE}${BOLD}${RD}Invalid Disk Size. Please use a number (e.g., 10 or 10G).${CL}" + exit-script + fi + else + exit-script + fi + if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \ "0" "None (Default)" ON \ "1" "Write Through" OFF \ 3>&1 1>&2 2>&3); then if [ $DISK_CACHE = "1" ]; then - echo -e "${DGN}Using Disk Cache: ${BGN}Write Through${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}Write Through${CL}" DISK_CACHE="cache=writethrough," else - echo -e "${DGN}Using Disk Cache: ${BGN}None${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" DISK_CACHE="" fi else @@ -209,10 +249,10 @@ function advanced_settings() { if VM_NAME=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Hostname" 8 58 ubuntu --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $VM_NAME ]; then HN="ubuntu" - echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" else HN=$(echo ${VM_NAME,,} | tr -d ' ') - echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" fi else exit-script @@ -223,10 +263,10 @@ function advanced_settings() { "1" "Host" OFF \ 3>&1 1>&2 2>&3); then if [ $CPU_TYPE1 = "1" ]; then - echo -e "${DGN}Using CPU Model: ${BGN}Host${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}Host${CL}" CPU_TYPE=" -cpu host" else - echo -e "${DGN}Using CPU Model: ${BGN}KVM64${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" CPU_TYPE="" fi else @@ -236,9 +276,9 @@ function advanced_settings() { if CORE_COUNT=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate CPU Cores" 8 58 2 --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $CORE_COUNT ]; then CORE_COUNT="2" - echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" else - echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" fi else exit-script @@ -247,9 +287,9 @@ function advanced_settings() { if RAM_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate RAM in MiB" 8 58 2048 --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $RAM_SIZE ]; then RAM_SIZE="2048" - echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" else - echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" fi else exit-script @@ -258,9 +298,9 @@ function advanced_settings() { if BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $BRG ]; then BRG="vmbr0" - echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" else - echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" fi else exit-script @@ -269,10 +309,10 @@ function advanced_settings() { if MAC1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $MAC1 ]; then MAC="$GEN_MAC" - echo -e "${DGN}Using MAC Address: ${BGN}$MAC${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC${CL}" else MAC="$MAC1" - echo -e "${DGN}Using MAC Address: ${BGN}$MAC1${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC1${CL}" fi else exit-script @@ -282,10 +322,10 @@ function advanced_settings() { if [ -z $VLAN1 ]; then VLAN1="Default" VLAN="" - echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" else VLAN=",tag=$VLAN1" - echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" fi else exit-script @@ -295,20 +335,28 @@ function advanced_settings() { if [ -z $MTU1 ]; then MTU1="Default" MTU="" - echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" else MTU=",mtu=$MTU1" - echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" fi else exit-script fi - if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create an Ubuntu 24.04 VM?" --no-button Do-Over 10 58); then - echo -e "${RD}Creating an Ubuntu 24.04 VM using the above advanced settings${CL}" + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "START VIRTUAL MACHINE" --yesno "Start VM when completed?" 10 58); then + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" + START_VM="yes" + else + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}no${CL}" + START_VM="no" + fi + + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create a Ubuntu 24.04 VM?" --no-button Do-Over 10 58); then + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 24.04 VM using the above advanced settings${CL}" else header_info - echo -e "${RD}Using Advanced Settings${CL}" + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" advanced_settings fi } @@ -316,15 +364,14 @@ function advanced_settings() { function start_script() { if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then header_info - echo -e "${BL}Using Default Settings${CL}" + echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}" default_settings else header_info - echo -e "${RD}Using Advanced Settings${CL}" + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" advanced_settings fi } - check_root arch_check pve_check @@ -392,22 +439,61 @@ done msg_info "Creating a Ubuntu 24.04 VM" qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \ - -name $HN -tags community-script -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci + -name $HN -tags proxmox-helper-scripts -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci pvesm alloc $STORAGE $VMID $DISK0 4M 1>&/dev/null qm importdisk $VMID ${FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null qm set $VMID \ -efidisk0 ${DISK0_REF}${FORMAT} \ - -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=2G \ + -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \ -ide2 ${STORAGE}:cloudinit \ -boot order=scsi0 \ - -serial0 socket \ - -description "
+ -serial0 socket >/dev/null +DESCRIPTION=$( + cat < + + Logo + - # Ubuntu 24.04 VM +

ubuntu VM

+ +

+ + spend Coffee + +

+ + + + GitHub + + + + Discussions + + + + Issues + +
+EOF +) +qm set "$VMID" -description "$DESCRIPTION" >/dev/null +if [ -n "$DISK_SIZE" ]; then + msg_info "Resizing disk to $DISK_SIZE GB" + qm resize $VMID scsi0 ${DISK_SIZE} >/dev/null +else + msg_info "Using default disk size of $DEFAULT_DISK_SIZE GB" + qm resize $VMID scsi0 ${DEFAULT_DISK_SIZE} >/dev/null +fi - - " >/dev/null msg_ok "Created a Ubuntu 24.04 VM ${CL}${BL}(${HN})" +if [ "$START_VM" == "yes" ]; then + msg_info "Starting Ubuntu 24.04 VM" + qm start $VMID + msg_ok "Started Ubuntu 24.04 VM" +fi + msg_ok "Completed Successfully!\n" echo -e "Setup Cloud-Init before starting \n -More info at https://github.com/tteck/Proxmox/discussions/2072 \n" +More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" From 928eabc20220c7b7edac48353dba12fd1d0434d2 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:02:07 +0100 Subject: [PATCH 04/36] Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt (#1712) * Update ubuntu2204-vm.sh * set space to 5g * increase space * add cifs support --- json/ubuntu2204-vm.json | 2 +- vm/ubuntu2204-vm.sh | 207 +++++++++++++++++++++++++++------------- 2 files changed, 140 insertions(+), 69 deletions(-) diff --git a/json/ubuntu2204-vm.json b/json/ubuntu2204-vm.json index de4d1550..d3a34776 100644 --- a/json/ubuntu2204-vm.json +++ b/json/ubuntu2204-vm.json @@ -20,7 +20,7 @@ "resources": { "cpu": 2, "ram": 2048, - "hdd": 2, + "hdd": 5, "os": null, "version": null } diff --git a/vm/ubuntu2204-vm.sh b/vm/ubuntu2204-vm.sh index f20ca100..50132197 100644 --- a/vm/ubuntu2204-vm.sh +++ b/vm/ubuntu2204-vm.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash -# Copyright (c) 2021-2025 tteck -# Author: tteck (tteckster) -# License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Copyright (c) 2021-2025 community-scripts ORG +# Author: MickLesk (CanbiZ) +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE function header_info { clear @@ -23,16 +22,36 @@ NEXTID=$(pvesh get /cluster/nextid) YW=$(echo "\033[33m") BL=$(echo "\033[36m") -HA=$(echo "\033[1;34m") RD=$(echo "\033[01;31m") BGN=$(echo "\033[4;92m") GN=$(echo "\033[1;92m") DGN=$(echo "\033[32m") CL=$(echo "\033[m") + +CL=$(echo "\033[m") +BOLD=$(echo "\033[1m") BFR="\\r\\033[K" -HOLD="-" -CM="${GN}βœ“${CL}" -CROSS="${RD}βœ—${CL}" +HOLD=" " +TAB=" " + +CM="${TAB}βœ”οΈ${TAB}${CL}" +CROSS="${TAB}βœ–οΈ${TAB}${CL}" +INFO="${TAB}πŸ’‘${TAB}${CL}" +OS="${TAB}πŸ–₯️${TAB}${CL}" +CONTAINERTYPE="${TAB}πŸ“¦${TAB}${CL}" +DISKSIZE="${TAB}πŸ’Ύ${TAB}${CL}" +CPUCORE="${TAB}🧠${TAB}${CL}" +RAMSIZE="${TAB}πŸ› οΈ${TAB}${CL}" +CONTAINERID="${TAB}πŸ†”${TAB}${CL}" +HOSTNAME="${TAB}🏠${TAB}${CL}" +BRIDGE="${TAB}πŸŒ‰${TAB}${CL}" +GATEWAY="${TAB}🌐${TAB}${CL}" +DEFAULT="${TAB}βš™οΈ${TAB}${CL}" +MACADDRESS="${TAB}πŸ”—${TAB}${CL}" +VLANTAG="${TAB}🏷️${TAB}${CL}" +CREATING="${TAB}πŸš€${TAB}${CL}" +ADVANCED="${TAB}🧩${TAB}${CL}" + THIN="discard=on,ssd=1," set -e trap 'error_handler $LINENO "$BASH_COMMAND"' ERR @@ -63,22 +82,22 @@ pushd $TEMP_DIR >/dev/null if whiptail --backtitle "Proxmox VE Helper Scripts" --title "Ubuntu 22.04 VM" --yesno "This will create a New Ubuntu 22.04 VM. Proceed?" 10 58; then : else - header_info && echo -e "⚠ User exited script \n" && exit + header_info && echo -e "${CROSS}${RD}User exited script${CL}\n" && exit fi function msg_info() { local msg="$1" - echo -ne " ${HOLD} ${YW}${msg}..." + echo -ne "${TAB}${YW}${HOLD}${msg}${HOLD}" } function msg_ok() { local msg="$1" - echo -e "${BFR} ${CM} ${GN}${msg}${CL}" + echo -e "${BFR}${CM}${GN}${msg}${CL}" } function msg_error() { local msg="$1" - echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}" + echo -e "${BFR}${CROSS}${RD}${msg}${CL}" } function check_root() { @@ -93,17 +112,18 @@ function check_root() { function pve_check() { if ! pveversion | grep -Eq "pve-manager/8.[1-3]"; then - msg_error "This version of Proxmox Virtual Environment is not supported" + msg_error "${CROSS}${RD}This version of Proxmox Virtual Environment is not supported" echo -e "Requires Proxmox Virtual Environment Version 8.1 or later." echo -e "Exiting..." sleep 2 exit -fi + fi } function arch_check() { if [ "$(dpkg --print-architecture)" != "amd64" ]; then - msg_error "This script will not work with PiMox! \n" + echo -e "\n ${INFO}${YWB}This script will not work with PiMox! \n" + echo -e "\n ${YWB}Visit https://github.com/asylumexp/Proxmox for ARM64 support. \n" echo -e "Exiting..." sleep 2 exit @@ -125,7 +145,7 @@ function ssh_check() { function exit-script() { clear - echo -e "⚠ User exited script \n" + echo -e "\n${CROSS}${RD}User exited script${CL}\n" exit } @@ -133,6 +153,7 @@ function default_settings() { VMID="$NEXTID" FORMAT=",efitype=4m" MACHINE="" + DISK_SIZE="5G" DISK_CACHE="" HN="ubuntu" CPU_TYPE="" @@ -142,20 +163,21 @@ function default_settings() { MAC="$GEN_MAC" VLAN="" MTU="" - START_VM="no" - echo -e "${DGN}Using Virtual Machine ID: ${BGN}${VMID}${CL}" - echo -e "${DGN}Using Machine Type: ${BGN}i440fx${CL}" - echo -e "${DGN}Using Disk Cache: ${BGN}None${CL}" - echo -e "${DGN}Using Hostname: ${BGN}${HN}${CL}" - echo -e "${DGN}Using CPU Model: ${BGN}KVM64${CL}" - echo -e "${DGN}Allocated Cores: ${BGN}${CORE_COUNT}${CL}" - echo -e "${DGN}Allocated RAM: ${BGN}${RAM_SIZE}${CL}" - echo -e "${DGN}Using Bridge: ${BGN}${BRG}${CL}" - echo -e "${DGN}Using MAC Address: ${BGN}${MAC}${CL}" - echo -e "${DGN}Using VLAN: ${BGN}Default${CL}" - echo -e "${DGN}Using Interface MTU Size: ${BGN}Default${CL}" - echo -e "${DGN}Start VM when completed: ${BGN}no${CL}" - echo -e "${BL}Creating an Ubuntu 22.04 VM using the above default settings${CL}" + START_VM="yes" + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}${VMID}${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}i440fx${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}${DISK_SIZE}${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}${HN}${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}${CORE_COUNT}${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}${RAM_SIZE}${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}${BRG}${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}${MAC}${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}Default${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}Default${CL}" + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 22.04 VM using the above default settings${CL}" } function advanced_settings() { @@ -169,7 +191,7 @@ function advanced_settings() { sleep 2 continue fi - echo -e "${DGN}Virtual Machine ID: ${BGN}$VMID${CL}" + echo -e "${CONTAINERID}${BOLD}${DGN}Virtual Machine ID: ${BGN}$VMID${CL}" break else exit-script @@ -181,27 +203,42 @@ function advanced_settings() { "q35" "Machine q35" OFF \ 3>&1 1>&2 2>&3); then if [ $MACH = q35 ]; then - echo -e "${DGN}Using Machine Type: ${BGN}$MACH${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" FORMAT="" MACHINE=" -machine q35" else - echo -e "${DGN}Using Machine Type: ${BGN}$MACH${CL}" + echo -e "${CONTAINERTYPE}${BOLD}${DGN}Machine Type: ${BGN}$MACH${CL}" FORMAT=",efitype=4m" MACHINE="" fi else exit-script fi - + + if DISK_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Disk Size in GiB (e.g., 10, 20)" 8 58 "$DISK_SIZE" --title "DISK SIZE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then + DISK_SIZE=$(echo "$DISK_SIZE" | tr -d ' ') + if [[ "$DISK_SIZE" =~ ^[0-9]+$ ]]; then + DISK_SIZE="${DISK_SIZE}G" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + elif [[ "$DISK_SIZE" =~ ^[0-9]+G$ ]]; then + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Size: ${BGN}$DISK_SIZE${CL}" + else + echo -e "${DISKSIZE}${BOLD}${RD}Invalid Disk Size. Please use a number (e.g., 10 or 10G).${CL}" + exit-script + fi + else + exit-script + fi + if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \ "0" "None (Default)" ON \ "1" "Write Through" OFF \ 3>&1 1>&2 2>&3); then if [ $DISK_CACHE = "1" ]; then - echo -e "${DGN}Using Disk Cache: ${BGN}Write Through${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}Write Through${CL}" DISK_CACHE="cache=writethrough," else - echo -e "${DGN}Using Disk Cache: ${BGN}None${CL}" + echo -e "${DISKSIZE}${BOLD}${DGN}Disk Cache: ${BGN}None${CL}" DISK_CACHE="" fi else @@ -211,10 +248,10 @@ function advanced_settings() { if VM_NAME=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set Hostname" 8 58 ubuntu --title "HOSTNAME" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $VM_NAME ]; then HN="ubuntu" - echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" else HN=$(echo ${VM_NAME,,} | tr -d ' ') - echo -e "${DGN}Using Hostname: ${BGN}$HN${CL}" + echo -e "${HOSTNAME}${BOLD}${DGN}Hostname: ${BGN}$HN${CL}" fi else exit-script @@ -225,10 +262,10 @@ function advanced_settings() { "1" "Host" OFF \ 3>&1 1>&2 2>&3); then if [ $CPU_TYPE1 = "1" ]; then - echo -e "${DGN}Using CPU Model: ${BGN}Host${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}Host${CL}" CPU_TYPE=" -cpu host" else - echo -e "${DGN}Using CPU Model: ${BGN}KVM64${CL}" + echo -e "${OS}${BOLD}${DGN}CPU Model: ${BGN}KVM64${CL}" CPU_TYPE="" fi else @@ -238,9 +275,9 @@ function advanced_settings() { if CORE_COUNT=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate CPU Cores" 8 58 2 --title "CORE COUNT" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $CORE_COUNT ]; then CORE_COUNT="2" - echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" else - echo -e "${DGN}Allocated Cores: ${BGN}$CORE_COUNT${CL}" + echo -e "${CPUCORE}${BOLD}${DGN}CPU Cores: ${BGN}$CORE_COUNT${CL}" fi else exit-script @@ -249,9 +286,9 @@ function advanced_settings() { if RAM_SIZE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Allocate RAM in MiB" 8 58 2048 --title "RAM" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $RAM_SIZE ]; then RAM_SIZE="2048" - echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" else - echo -e "${DGN}Allocated RAM: ${BGN}$RAM_SIZE${CL}" + echo -e "${RAMSIZE}${BOLD}${DGN}RAM Size: ${BGN}$RAM_SIZE${CL}" fi else exit-script @@ -260,9 +297,9 @@ function advanced_settings() { if BRG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a Bridge" 8 58 vmbr0 --title "BRIDGE" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $BRG ]; then BRG="vmbr0" - echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" else - echo -e "${DGN}Using Bridge: ${BGN}$BRG${CL}" + echo -e "${BRIDGE}${BOLD}${DGN}Bridge: ${BGN}$BRG${CL}" fi else exit-script @@ -271,10 +308,10 @@ function advanced_settings() { if MAC1=$(whiptail --backtitle "Proxmox VE Helper Scripts" --inputbox "Set a MAC Address" 8 58 $GEN_MAC --title "MAC ADDRESS" --cancel-button Exit-Script 3>&1 1>&2 2>&3); then if [ -z $MAC1 ]; then MAC="$GEN_MAC" - echo -e "${DGN}Using MAC Address: ${BGN}$MAC${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC${CL}" else MAC="$MAC1" - echo -e "${DGN}Using MAC Address: ${BGN}$MAC1${CL}" + echo -e "${MACADDRESS}${BOLD}${DGN}MAC Address: ${BGN}$MAC1${CL}" fi else exit-script @@ -284,10 +321,10 @@ function advanced_settings() { if [ -z $VLAN1 ]; then VLAN1="Default" VLAN="" - echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" else VLAN=",tag=$VLAN1" - echo -e "${DGN}Using Vlan: ${BGN}$VLAN1${CL}" + echo -e "${VLANTAG}${BOLD}${DGN}VLAN: ${BGN}$VLAN1${CL}" fi else exit-script @@ -297,28 +334,28 @@ function advanced_settings() { if [ -z $MTU1 ]; then MTU1="Default" MTU="" - echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" else MTU=",mtu=$MTU1" - echo -e "${DGN}Using Interface MTU Size: ${BGN}$MTU1${CL}" + echo -e "${DEFAULT}${BOLD}${DGN}Interface MTU Size: ${BGN}$MTU1${CL}" fi else exit-script fi if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "START VIRTUAL MACHINE" --yesno "Start VM when completed?" 10 58); then - echo -e "${DGN}Start VM when completed: ${BGN}yes${CL}" + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}yes${CL}" START_VM="yes" else - echo -e "${DGN}Start VM when completed: ${BGN}no${CL}" + echo -e "${GATEWAY}${BOLD}${DGN}Start VM when completed: ${BGN}no${CL}" START_VM="no" fi - if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create an Ubuntu 22.04 VM?" --no-button Do-Over 10 58); then - echo -e "${RD}Creating an Ubuntu 22.04 VM using the above advanced settings${CL}" + if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "ADVANCED SETTINGS COMPLETE" --yesno "Ready to create a Ubuntu 22.04 VM?" --no-button Do-Over 10 58); then + echo -e "${CREATING}${BOLD}${DGN}Creating a Ubuntu 22.04 VM using the above advanced settings${CL}" else header_info - echo -e "${RD}Using Advanced Settings${CL}" + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" advanced_settings fi } @@ -326,11 +363,11 @@ function advanced_settings() { function start_script() { if (whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --yesno "Use Default Settings?" --no-button Advanced 10 58); then header_info - echo -e "${BL}Using Default Settings${CL}" + echo -e "${DEFAULT}${BOLD}${BL}Using Default Settings${CL}" default_settings else header_info - echo -e "${RD}Using Advanced Settings${CL}" + echo -e "${ADVANCED}${BOLD}${RD}Using Advanced Settings${CL}" advanced_settings fi } @@ -380,7 +417,7 @@ msg_ok "Downloaded ${CL}${BL}${FILE}${CL}" STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}') case $STORAGE_TYPE in -nfs | dir) +nfs | dir | cifs) DISK_EXT=".qcow2" DISK_REF="$VMID/" DISK_IMPORT="-format qcow2" @@ -402,27 +439,61 @@ done msg_info "Creating a Ubuntu 22.04 VM" qm create $VMID -agent 1${MACHINE} -tablet 0 -localtime 1 -bios ovmf${CPU_TYPE} -cores $CORE_COUNT -memory $RAM_SIZE \ - -name $HN -tags community-script -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci + -name $HN -tags proxmox-helper-scripts -net0 virtio,bridge=$BRG,macaddr=$MAC$VLAN$MTU -onboot 1 -ostype l26 -scsihw virtio-scsi-pci pvesm alloc $STORAGE $VMID $DISK0 4M 1>&/dev/null qm importdisk $VMID ${FILE} $STORAGE ${DISK_IMPORT:-} 1>&/dev/null qm set $VMID \ -efidisk0 ${DISK0_REF}${FORMAT} \ - -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=2G \ + -scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=${DISK_SIZE} \ -ide2 ${STORAGE}:cloudinit \ -boot order=scsi0 \ - -serial0 socket \ - -description "
+ -serial0 socket >/dev/null +DESCRIPTION=$( + cat < + + Logo + - # Ubuntu 22.04 VM +

ubuntu VM

+ +

+ + spend Coffee + +

+ + + + GitHub + + + + Discussions + + + + Issues + +
+EOF +) +qm set "$VMID" -description "$DESCRIPTION" >/dev/null +if [ -n "$DISK_SIZE" ]; then + msg_info "Resizing disk to $DISK_SIZE GB" + qm resize $VMID scsi0 ${DISK_SIZE} >/dev/null +else + msg_info "Using default disk size of $DEFAULT_DISK_SIZE GB" + qm resize $VMID scsi0 ${DEFAULT_DISK_SIZE} >/dev/null +fi - - " >/dev/null msg_ok "Created a Ubuntu 22.04 VM ${CL}${BL}(${HN})" if [ "$START_VM" == "yes" ]; then msg_info "Starting Ubuntu 22.04 VM" qm start $VMID msg_ok "Started Ubuntu 22.04 VM" fi + msg_ok "Completed Successfully!\n" echo -e "Setup Cloud-Init before starting \n -More info at https://github.com/tteck/Proxmox/discussions/2072 \n" +More info at https://github.com/community-scripts/ProxmoxVE/discussions/272 \n" From 607318b1977ea9c8ea9eb69aa91376773dabaff7 Mon Sep 17 00:00:00 2001 From: "community-scripts-pr-app[bot]" <189241966+community-scripts-pr-app[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 12:03:52 +0100 Subject: [PATCH 05/36] Update CHANGELOG.md (#1713) Co-authored-by: github-actions[bot] --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaba48e6..a3d6045a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,19 @@ All LXC instances created using this repository come pre-installed with Midnight Do not break established syntax in this file, as it is automatically updated by a Github Workflow +## 2025-01-24 + +### Changed + +### ✨ New Scripts + +- New Script: Ubuntu 24.10 VM [@MickLesk](https://github.com/MickLesk) ([#1711](https://github.com/community-scripts/ProxmoxVE/pull/1711)) + +### πŸš€ Updated Scripts + +- Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712)) +- Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714)) + ## 2025-01-23 ### Changed From f78cb0319ec06461dd97a6465e524dee5e35e524 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:22:12 +0100 Subject: [PATCH 06/36] Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic (#1716) * Update filebrowser.sh * rm comments --- misc/filebrowser.sh | 138 ++++++++++++++++++++++++-------------------- 1 file changed, 74 insertions(+), 64 deletions(-) diff --git a/misc/filebrowser.sh b/misc/filebrowser.sh index 02a4bb4c..a9ea1186 100644 --- a/misc/filebrowser.sh +++ b/misc/filebrowser.sh @@ -1,9 +1,8 @@ #!/usr/bin/env bash -# Copyright (c) 2021-2025 tteck -# Author: tteck (tteckster) -# License: MIT -# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE +# Copyright (c) 2021-2025 community-scripts ORG +# Author: tteck (tteckster) | Co-Author: MickLesk +# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE function header_info { clear @@ -11,79 +10,88 @@ function header_info { _______ __ ____ / ____(_) /__ / __ )_________ _ __________ _____ / /_ / / / _ \/ __ / ___/ __ \ | /| / / ___/ _ \/ ___/ - / __/ / / / __/ /_/ / / / /_/ / |/ |/ (__ ) __/ / -/_/ /_/_/\___/_____/_/ \____/|__/|__/____/\___/_/ - + / __/ / / / __/ /_/ / / / /_/ / |/ |/ (__ ) __/ / +/_/ /_/_/\___/_____/_/ \____/|__/|__/____/\___/_/ EOF } -IP=$(hostname -I | awk '{print $1}') YW=$(echo "\033[33m") -BL=$(echo "\033[36m") -RD=$(echo "\033[01;31m") -BGN=$(echo "\033[4;92m") GN=$(echo "\033[1;92m") -DGN=$(echo "\033[32m") +RD=$(echo "\033[01;31m") +BL=$(echo "\033[36m") CL=$(echo "\033[m") -BFR="\\r\\033[K" -HOLD="-" -CM="${GN}βœ“${CL}" +CM="${GN}βœ”οΈ${CL}" +CROSS="${RD}βœ–οΈ${CL}" +INFO="${BL}ℹ️${CL}" + APP="FileBrowser" -hostname="$(hostname)" -header_info -if [ -f /root/filebrowser.db ]; then - read -r -p "Would you like to uninstall ${APP} on $hostname.? " prompt - if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then - systemctl disable -q --now filebrowser.service - rm -rf /usr/local/bin/filebrowser /root/filebrowser.db /etc/systemd/system/filebrowser.service - echo "$APP Removed" - sleep 2 - clear - exit - else - clear - exit - fi -fi -while true; do - read -p "This will Install ${APP} on $hostname. Proceed(y/n)?" yn - case $yn in - [Yy]*) break ;; - [Nn]*) exit ;; - *) echo "Please answer yes or no." ;; - esac -done +INSTALL_PATH="/usr/local/bin/filebrowser" +SERVICE_PATH="/etc/systemd/system/filebrowser.service" +DB_PATH="/root/filebrowser.db" +IP=$(hostname -I | awk '{print $1}') header_info + function msg_info() { local msg="$1" - echo -ne " ${HOLD} ${YW}${msg}..." + echo -e "${INFO} ${YW}${msg}...${CL}" } function msg_ok() { local msg="$1" - echo -e "${BFR} ${CM} ${GN}${msg}${CL}" + echo -e "${CM} ${GN}${msg}${CL}" } -read -r -p "Would you like to use No Authentication? " prompt -msg_info "Installing ${APP}" -apt-get install -y curl &>/dev/null -RELEASE=$(curl -fsSL https://api.github.com/repos/filebrowser/filebrowser/releases/latest | grep -o '"tag_name": ".*"' | sed 's/"//g' | sed 's/tag_name: //g') -curl -fsSL https://github.com/filebrowser/filebrowser/releases/download/$RELEASE/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null +function msg_error() { + local msg="$1" + echo -e "${CROSS} ${RD}${msg}${CL}" +} -if [[ "${prompt,,}" =~ ^(y|yes)$ ]]; then - filebrowser config init -a '0.0.0.0' &>/dev/null - filebrowser config set -a '0.0.0.0' &>/dev/null - filebrowser config init --auth.method=noauth &>/dev/null - filebrowser config set --auth.method=noauth &>/dev/null - filebrowser users add ID 1 --perm.admin &>/dev/null -else - filebrowser config init -a '0.0.0.0' &>/dev/null - filebrowser config set -a '0.0.0.0' &>/dev/null - filebrowser users add admin helper-scripts.com --perm.admin &>/dev/null +if [ -f "$INSTALL_PATH" ]; then + echo -e "${YW}⚠️ ${APP} is already installed.${CL}" + read -r -p "Would you like to uninstall ${APP}? (y/N): " uninstall_prompt + if [[ "${uninstall_prompt,,}" =~ ^(y|yes)$ ]]; then + msg_info "Uninstalling ${APP}" + systemctl disable -q --now filebrowser.service + rm -f "$INSTALL_PATH" "$DB_PATH" "$SERVICE_PATH" + msg_ok "${APP} has been uninstalled." + exit 0 + fi + + read -r -p "Would you like to update ${APP}? (y/N): " update_prompt + if [[ "${update_prompt,,}" =~ ^(y|yes)$ ]]; then + msg_info "Updating ${APP}" + curl -fsSL https://github.com/filebrowser/filebrowser/releases/latest/download/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null + msg_ok "Updated ${APP}" + exit 0 + else + echo -e "${YW}⚠️ Update skipped. Exiting.${CL}" + exit 0 + fi fi -msg_ok "Installed ${APP} on $hostname" -msg_info "Creating Service" -cat </etc/systemd/system/filebrowser.service +echo -e "${YW}⚠️ ${APP} is not installed.${CL}" +read -r -p "Would you like to install ${APP}? (y/n): " install_prompt +if [[ "${install_prompt,,}" =~ ^(y|yes)$ ]]; then + msg_info "Installing ${APP}" + apt-get install -y curl &>/dev/null + curl -fsSL https://github.com/filebrowser/filebrowser/releases/latest/download/linux-amd64-filebrowser.tar.gz | tar -xzv -C /usr/local/bin &>/dev/null + msg_ok "Installed ${APP}" + + read -r -p "Would you like to use No Authentication? (y/N): " auth_prompt + if [[ "${auth_prompt,,}" =~ ^(y|yes)$ ]]; then + msg_info "Configuring No Authentication" + filebrowser config init -a '0.0.0.0' &>/dev/null + filebrowser config set -a '0.0.0.0' --auth.method=noauth &>/dev/null + msg_ok "No Authentication configured" + else + msg_info "Setting up default authentication" + filebrowser config init -a '0.0.0.0' &>/dev/null + filebrowser config set -a '0.0.0.0' &>/dev/null + filebrowser users add admin helper-scripts.com --perm.admin &>/dev/null + msg_ok "Default authentication configured (admin:helper-scripts.com)" + fi + + msg_info "Creating service" + cat </etc/systemd/system/filebrowser.service [Unit] Description=Filebrowser After=network-online.target @@ -96,9 +104,11 @@ ExecStart=/usr/local/bin/filebrowser -r / [Install] WantedBy=default.target EOF -systemctl enable -q --now filebrowser.service -msg_ok "Created Service" + systemctl enable -q --now filebrowser.service + msg_ok "Service created successfully" -msg_ok "Completed Successfully!\n" -echo -e "${APP} should be reachable by going to the following URL. - ${BL}http://$IP:8080${CL} \n" + echo -e "${CM} ${GN}${APP} is reachable at: ${BL}http://$IP:8080${CL}" +else + echo -e "${YW}⚠️ Installation skipped. Exiting.${CL}" + exit 0 +fi From 63061ea06f5d6b82aab07594a6574312ef0189cb Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:31:29 +0100 Subject: [PATCH 07/36] Update actualbudget-install.sh --- install/actualbudget-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index 82adda21..35733a57 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -54,7 +54,7 @@ PORT=5006 EOF cd /opt/actualbudget $STD yarn install -echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt" +echo "${RELEASE}" >"/opt/actualbudget_version.txt" msg_ok "Installed Actual Budget" msg_info "Creating Service" From c4532f538b87ac6973dde3f22916c542ccd58077 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:32:20 +0100 Subject: [PATCH 08/36] Update actualbudget.sh --- ct/actualbudget.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index 555b1113..c4bbd861 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -41,12 +41,13 @@ function update_script() { fi RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual-server/tags | jq --raw-output '.[0].name') - if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then + if [[ ! -f /opt/actualbudget_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/actualbudget_version.txt)" ]]; then msg_info "Stopping ${APP}" systemctl stop actualbudget msg_ok "${APP} Stopped" msg_info "Updating ${APP} to ${RELEASE}" + cd /tmp wget -q https://codeload.github.com/actualbudget/actual-server/legacy.tar.gz/refs/tags/${RELEASE} -O actual-server.tar.gz tar -xzvf actual-server.tar.gz >/dev/null 2>&1 mv /opt/actualbudget /opt/actualbudget_bak @@ -65,6 +66,7 @@ function update_script() { msg_info "Cleaning Up" rm -rf /opt/actualbudget_bak + rm -rf /tmp/actual-server.tar.gz msg_ok "Cleaned" msg_ok "Updated Successfully" else From f1109388f440bf7219dc9c9de270165b62086e6d Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:33:07 +0100 Subject: [PATCH 09/36] Update actualbudget.sh --- ct/actualbudget.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index c4bbd861..0b29b08f 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -57,7 +57,7 @@ function update_script() { mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files cd /opt/actualbudget yarn install &>/dev/null - echo "${RELEASE}" >/opt/${APP}_version.txt + echo "${RELEASE}" >/opt/actualbudget_version.txt msg_ok "Updated ${APP}" msg_info "Starting ${APP}" From 39ff3486e9042d8be069d76e4d84e8a9b40451bf Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:38:07 +0100 Subject: [PATCH 10/36] Update actualbudget.sh --- ct/actualbudget.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index 0b29b08f..93e2dc67 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -40,7 +40,7 @@ function update_script() { echo "Installed jq..." fi - RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual-server/tags | jq --raw-output '.[0].name') + RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if [[ ! -f /opt/actualbudget_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/actualbudget_version.txt)" ]]; then msg_info "Stopping ${APP}" systemctl stop actualbudget @@ -49,10 +49,10 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" cd /tmp wget -q https://codeload.github.com/actualbudget/actual-server/legacy.tar.gz/refs/tags/${RELEASE} -O actual-server.tar.gz - tar -xzvf actual-server.tar.gz >/dev/null 2>&1 + tar -xzf actual-server.tar.gz >/dev/null 2>&1 mv /opt/actualbudget /opt/actualbudget_bak mkdir -p /opt/actualbudget/ - mv actual-server-* /opt/actualbudget + mv *ctual-server-* /opt/actualbudget mv /opt/actualbudget_bak/.env /opt/actualbudget mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files cd /opt/actualbudget From ebb7f73e8f9d6023fd5430e091ea845c49d5817b Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:38:31 +0100 Subject: [PATCH 11/36] Update actualbudget.sh --- ct/actualbudget.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index 93e2dc67..c1643393 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -33,13 +33,7 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - - if ! command -v jq >/dev/null 2>&1; then - echo "Installing jq..." - apt-get install -y jq >/dev/null 2>&1 - echo "Installed jq..." - fi - + RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if [[ ! -f /opt/actualbudget_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/actualbudget_version.txt)" ]]; then msg_info "Stopping ${APP}" From b402026b845936cf1599a721d7095c9eda1b3df1 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:38:42 +0100 Subject: [PATCH 12/36] Update actualbudget-install.sh --- install/actualbudget-install.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index 35733a57..c18f7ea3 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -19,8 +19,6 @@ $STD apt-get install -y \ sudo \ mc \ gpg \ - git \ - jq \ build-essential msg_ok "Installed Dependencies" From e6d032eac39b7ef95d2207ec8963a39fbc10f9ba Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:41:13 +0100 Subject: [PATCH 13/36] rm file --- install/actualbudget-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index c18f7ea3..c4e203d4 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -81,6 +81,7 @@ motd_ssh customize msg_info "Cleaning up" +rm -rf /opt/v${RELEASE}.tar.gz $STD apt-get -y autoremove $STD apt-get -y autoclean msg_ok "Cleaned" From ab6244c1fe302ff6646c7f9dc6ee5570497738c5 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:45:54 +0100 Subject: [PATCH 14/36] Update actualbudget.sh --- ct/actualbudget.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index c1643393..07038cb6 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -42,7 +42,7 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" cd /tmp - wget -q https://codeload.github.com/actualbudget/actual-server/legacy.tar.gz/refs/tags/${RELEASE} -O actual-server.tar.gz + wget -q https://github.com/actualbudget/actual-server/archive/refs/tags/v${RELEASE}.tar.gz tar -xzf actual-server.tar.gz >/dev/null 2>&1 mv /opt/actualbudget /opt/actualbudget_bak mkdir -p /opt/actualbudget/ From 8241fa1dd42d715711e9b4d7d29eeb50576d78c8 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:50:52 +0100 Subject: [PATCH 15/36] Update actualbudget.sh --- ct/actualbudget.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index 07038cb6..46aad3c2 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -43,7 +43,7 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" cd /tmp wget -q https://github.com/actualbudget/actual-server/archive/refs/tags/v${RELEASE}.tar.gz - tar -xzf actual-server.tar.gz >/dev/null 2>&1 + tar -xzf v${RELEASE}.tar.gz >/dev/null 2>&1 mv /opt/actualbudget /opt/actualbudget_bak mkdir -p /opt/actualbudget/ mv *ctual-server-* /opt/actualbudget From bf618f04e410ca25baf2bcb51bc1fb11321f4d7d Mon Sep 17 00:00:00 2001 From: "community-scripts-pr-app[bot]" <189241966+community-scripts-pr-app[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:58:43 +0100 Subject: [PATCH 16/36] Update CHANGELOG.md (#1717) --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d6045a..4f709fe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ Do not break established syntax in this file, as it is automatically updated by ### πŸš€ Updated Scripts +- Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic [@MickLesk](https://github.com/MickLesk) ([#1716](https://github.com/community-scripts/ProxmoxVE/pull/1716)) - Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712)) - Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714)) From a7ee0705e24bd5f78d400d85af2d3114c626e44e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 13:59:02 +0100 Subject: [PATCH 17/36] Update .app-headers file (#1718) --- misc/.app-headers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/.app-headers b/misc/.app-headers index c8602222..ebdb0ed6 100644 --- a/misc/.app-headers +++ b/misc/.app-headers @@ -1,4 +1,4 @@ -### Generated on 01-22-2025 +### Generated on 01-24-2025 ################################################## ### 2fauth.sh From f29cbe5b46297577930c9f1cda60d992dac40866 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:03:59 +0100 Subject: [PATCH 18/36] [Core] Better Creation of App Headers for next feature (#1719) * Update Function to crawl app Headers * Update Function to crawl app Headers --- .github/workflows/auto-update-app-headers.yml | 32 +++++++--------- .../workflows/scripts/generate-app-headers.sh | 37 ++++++++----------- 2 files changed, 30 insertions(+), 39 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index b02c3e61..15f7ee04 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -1,4 +1,4 @@ -name: Auto Update .app-headers +name: Auto Update .app-files on: push: @@ -9,7 +9,7 @@ on: workflow_dispatch: # ErmΓΆglicht das manuelle AusfΓΌhren der Action jobs: - update-app-headers: + update-app-files: runs-on: ubuntu-latest permissions: @@ -31,15 +31,15 @@ jobs: - name: Install figlet run: sudo apt-get install -y figlet - # Step 4: Run the generate-app-headers.sh script to update .app-headers - - name: Run generate-app-headers.sh to update .app-headers + # Step 4: Run the updated generate-app-files.sh script + - name: Run generate-app-files.sh run: | chmod +x .github/workflows/scripts/generate-app-headers.sh .github/workflows/scripts/generate-app-headers.sh env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # Step 5: Check if there are any changes + # Step 5: Check for changes - name: Check if there are any changes id: verify-diff run: | @@ -51,16 +51,15 @@ jobs: run: | git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com" - git add ./misc/.app-headers - git commit -m "Update .app-headers file" - # Create a temporary branch for the PR - git checkout -b pr-update-app-headers - git push origin pr-update-app-headers --force - + git add ct/*.app + git commit -m "Update .app files" + git checkout -b pr-update-app-files + git push origin pr-update-app-files --force + # Create PR against main - gh pr create --title "[core] update .app-headers file" \ - --body "This PR is auto-generated by a Github Action to update the .app-headers file." \ - --head pr-update-app-headers \ + gh pr create --title "[core] update .app files" \ + --body "This PR is auto-generated by a Github Action to update the .app files." \ + --head pr-update-app-files \ --base main \ --label "automated pr" env: @@ -71,12 +70,9 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - PR_NUMBER=$(gh pr list --head "pr-update-app-headers" --json number --jq '.[].number') - # Check if the PR was created by the bot (skip review if so) + PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then gh pr review "$PR_NUMBER" --approve else echo "PR was created by the bot, skipping review." - fi - diff --git a/.github/workflows/scripts/generate-app-headers.sh b/.github/workflows/scripts/generate-app-headers.sh index c548b0fc..4d92951f 100644 --- a/.github/workflows/scripts/generate-app-headers.sh +++ b/.github/workflows/scripts/generate-app-headers.sh @@ -1,33 +1,28 @@ #!/usr/bin/env bash -output_file="./misc/.app-headers" -> "$output_file" # Clear or create the file - -current_date=$(date +"%m-%d-%Y") -# Header with date -{ - echo "### Generated on $current_date" - echo "##################################################" - echo -} >> "$output_file" - -# Find only regular .sh files in ./ct, sort them alphabetically +# Find all .sh files in ./ct directory, sorted alphabetically find ./ct -type f -name "*.sh" | sort | while read -r script; do # Extract the APP name from the APP line app_name=$(grep -oP '^APP="\K[^"]+' "$script" 2>/dev/null) if [[ -n "$app_name" ]]; then - # Generate figlet output - figlet_output=$(figlet -f slant "$app_name") - { - echo "### $(basename "$script")" - echo "APP=$app_name" - echo "$figlet_output" - echo - } >> "$output_file" + # Define the output file name based on the .sh file + output_file="${script%.sh}.app" + + # Check if the output file already exists + if [[ ! -f "$output_file" ]]; then + # Generate figlet output + figlet_output=$(figlet -f slant "$app_name") + + # Write the figlet output to the file + echo "$figlet_output" > "$output_file" + echo "Generated: $output_file" + else + echo "Skipped: $output_file already exists" + fi else echo "No APP name found in $script, skipping." fi done -echo "Generated combined file at $output_file" +echo "Completed processing .sh files." From 8c6af4db1f5c1c61c3f334601036d40d978bf53b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:04:56 +0100 Subject: [PATCH 19/36] Update .app files (#1721) Co-authored-by: github-actions[bot] --- ct/2fauth.app | 6 ++++++ ct/5etools.app | 6 ++++++ ct/actualbudget.app | 6 ++++++ ct/adguard.app | 6 ++++++ ct/adventurelog.app | 6 ++++++ ct/agentdvr.app | 6 ++++++ ct/alpine-docker.app | 6 ++++++ ct/alpine-grafana.app | 6 ++++++ ct/alpine-nextcloud.app | 12 ++++++++++++ ct/alpine-vaultwarden.app | 12 ++++++++++++ ct/alpine-zigbee2mqtt.app | 12 ++++++++++++ ct/alpine.app | 6 ++++++ ct/apache-cassandra.app | 12 ++++++++++++ ct/apache-couchdb.app | 12 ++++++++++++ ct/apache-guacamole.app | 12 ++++++++++++ ct/apt-cacher-ng.app | 6 ++++++ ct/archivebox.app | 6 ++++++ ct/aria2.app | 6 ++++++ ct/audiobookshelf.app | 6 ++++++ ct/authentik.app | 6 ++++++ ct/autobrr.app | 6 ++++++ ct/bazarr.app | 6 ++++++ ct/beszel.app | 6 ++++++ ct/blocky.app | 6 ++++++ ct/bookstack.app | 6 ++++++ ct/bunkerweb.app | 6 ++++++ ct/caddy.app | 6 ++++++ ct/calibre-web.app | 6 ++++++ ct/casaos.app | 6 ++++++ ct/changedetection.app | 12 ++++++++++++ ct/channels.app | 6 ++++++ ct/checkmk.app | 6 ++++++ ct/cloudflared.app | 6 ++++++ ct/cockpit.app | 6 ++++++ ct/commafeed.app | 6 ++++++ ct/cronicle.app | 6 ++++++ ct/daemonsync.app | 6 ++++++ ct/dashy.app | 6 ++++++ ct/debian.app | 6 ++++++ ct/deconz.app | 6 ++++++ ct/deluge.app | 6 ++++++ ct/docker.app | 6 ++++++ ct/dockge.app | 6 ++++++ ct/dotnetaspwebapi.app | 12 ++++++++++++ ct/emby.app | 6 ++++++ ct/emqx.app | 6 ++++++ ct/ersatztv.app | 6 ++++++ ct/esphome.app | 6 ++++++ ct/evcc.app | 6 ++++++ ct/fenrus.app | 6 ++++++ ct/fhem.app | 6 ++++++ ct/firefly.app | 6 ++++++ ct/flaresolverr.app | 6 ++++++ ct/flowiseai.app | 6 ++++++ ct/forgejo.app | 6 ++++++ ct/frigate.app | 6 ++++++ ct/ghost.app | 6 ++++++ ct/gitea.app | 6 ++++++ ct/glance.app | 6 ++++++ ct/glpi.app | 6 ++++++ ct/go2rtc.app | 6 ++++++ ct/gokapi.app | 6 ++++++ ct/gotify.app | 6 ++++++ ct/grafana.app | 6 ++++++ ct/grist.app | 6 ++++++ ct/grocy.app | 6 ++++++ ct/headscale.app | 6 ++++++ ct/heimdall-dashboard.app | 12 ++++++++++++ ct/hivemq.app | 6 ++++++ ct/hoarder.app | 6 ++++++ ct/homarr.app | 6 ++++++ ct/homeassistant-core.app | 12 ++++++++++++ ct/homeassistant.app | 6 ++++++ ct/homebox.app | 6 ++++++ ct/homebridge.app | 6 ++++++ ct/homepage.app | 6 ++++++ ct/homer.app | 6 ++++++ ct/hyperhdr.app | 6 ++++++ ct/hyperion.app | 6 ++++++ ct/influxdb.app | 6 ++++++ ct/inspircd.app | 6 ++++++ ct/iobroker.app | 6 ++++++ ct/iventoy.app | 6 ++++++ ct/jackett.app | 6 ++++++ ct/jellyfin.app | 6 ++++++ ct/jellyseerr.app | 6 ++++++ ct/jenkins.app | 6 ++++++ ct/kavita.app | 6 ++++++ ct/keycloak.app | 6 ++++++ ct/kimai.app | 6 ++++++ ct/komga.app | 6 ++++++ ct/komodo.app | 6 ++++++ ct/kubo.app | 6 ++++++ ct/lazylibrarian.app | 6 ++++++ ct/lidarr.app | 6 ++++++ ct/linkwarden.app | 6 ++++++ ct/listmonk.app | 6 ++++++ ct/lldap.app | 6 ++++++ ct/lubelogger.app | 6 ++++++ ct/mafl.app | 6 ++++++ ct/magicmirror.app | 6 ++++++ ct/mariadb.app | 6 ++++++ ct/matterbridge.app | 6 ++++++ ct/mediamtx.app | 6 ++++++ ct/medusa.app | 6 ++++++ ct/memos.app | 6 ++++++ ct/meshcentral.app | 6 ++++++ ct/metube.app | 6 ++++++ ct/mongodb.app | 6 ++++++ ct/motioneye.app | 6 ++++++ ct/mqtt.app | 6 ++++++ ct/mylar3.app | 6 ++++++ ct/myspeed.app | 6 ++++++ ct/mysql.app | 6 ++++++ ct/n8n.app | 6 ++++++ ct/navidrome.app | 6 ++++++ ct/neo4j.app | 6 ++++++ ct/netbox.app | 6 ++++++ ct/nextcloudpi.app | 6 ++++++ ct/nextpvr.app | 6 ++++++ ct/nginxproxymanager.app | 12 ++++++++++++ ct/nocodb.app | 6 ++++++ ct/node-red.app | 6 ++++++ ct/notifiarr.app | 6 ++++++ ct/ntfy.app | 6 ++++++ ct/nzbget.app | 6 ++++++ ct/octoprint.app | 6 ++++++ ct/ollama.app | 6 ++++++ ct/omada.app | 6 ++++++ ct/ombi.app | 6 ++++++ ct/omv.app | 6 ++++++ ct/onedev.app | 6 ++++++ ct/opengist.app | 6 ++++++ ct/openhab.app | 6 ++++++ ct/openobserve.app | 6 ++++++ ct/openwebui.app | 6 ++++++ ct/overseerr.app | 6 ++++++ ct/owncast.app | 6 ++++++ ct/pairdrop.app | 6 ++++++ ct/paperless-ngx.app | 6 ++++++ ct/part-db.app | 6 ++++++ ct/pbs.app | 6 ++++++ ct/peanut.app | 6 ++++++ ct/petio.app | 6 ++++++ ct/pf2etools.app | 6 ++++++ ct/photoprism.app | 6 ++++++ ct/phpipam.app | 6 ++++++ ct/pialert.app | 6 ++++++ ct/pihole.app | 6 ++++++ ct/pingvin.app | 6 ++++++ ct/plex.app | 6 ++++++ ct/pocketbase.app | 6 ++++++ ct/podman-homeassistant.app | 12 ++++++++++++ ct/podman.app | 6 ++++++ ct/postgresql.app | 6 ++++++ ct/projectsend.app | 6 ++++++ ct/prometheus-alertmanager.app | 12 ++++++++++++ ct/prometheus.app | 6 ++++++ ct/prowlarr.app | 6 ++++++ ct/proxmox-datacenter-manager.app | 18 ++++++++++++++++++ ct/ps5-mqtt.app | 6 ++++++ ct/qbittorrent.app | 6 ++++++ ct/rabbitmq.app | 6 ++++++ ct/radarr.app | 6 ++++++ ct/rdtclient.app | 6 ++++++ ct/readarr.app | 6 ++++++ ct/readeck.app | 6 ++++++ ct/recyclarr.app | 6 ++++++ ct/redis.app | 6 ++++++ ct/rtsptoweb.app | 6 ++++++ ct/runtipi.app | 6 ++++++ ct/sabnzbd.app | 6 ++++++ ct/semaphore.app | 6 ++++++ ct/sftpgo.app | 6 ++++++ ct/shinobi.app | 6 ++++++ ct/silverbullet.app | 6 ++++++ ct/smokeping.app | 6 ++++++ ct/snipeit.app | 6 ++++++ ct/sonarr.app | 6 ++++++ ct/spoolman.app | 6 ++++++ ct/sqlserver2022.app | 12 ++++++++++++ ct/stirling-pdf.app | 6 ++++++ ct/syncthing.app | 6 ++++++ ct/tandoor.app | 6 ++++++ ct/tasmoadmin.app | 6 ++++++ ct/tautulli.app | 6 ++++++ ct/tdarr.app | 6 ++++++ ct/technitiumdns.app | 6 ++++++ ct/teddycloud.app | 6 ++++++ ct/the-lounge.app | 6 ++++++ ct/threadfin.app | 6 ++++++ ct/tianji.app | 6 ++++++ ct/traccar.app | 6 ++++++ ct/traefik.app | 6 ++++++ ct/transmission.app | 6 ++++++ ct/trilium.app | 6 ++++++ ct/typesense.app | 6 ++++++ ct/ubuntu.app | 6 ++++++ ct/umami.app | 6 ++++++ ct/umbrel.app | 6 ++++++ ct/unbound.app | 6 ++++++ ct/unifi.app | 6 ++++++ ct/unmanic.app | 6 ++++++ ct/uptimekuma.app | 6 ++++++ ct/urbackupserver.app | 12 ++++++++++++ ct/vaultwarden.app | 6 ++++++ ct/vikunja.app | 6 ++++++ ct/wallos.app | 6 ++++++ ct/wastebin.app | 6 ++++++ ct/watchyourlan.app | 6 ++++++ ct/wavelog.app | 6 ++++++ ct/whisparr.app | 6 ++++++ ct/whoogle.app | 6 ++++++ ct/wikijs.app | 6 ++++++ ct/wireguard.app | 6 ++++++ ct/wordpress.app | 6 ++++++ ct/yunohost.app | 6 ++++++ ct/zabbix.app | 6 ++++++ ct/zammad.app | 6 ++++++ ct/zigbee2mqtt.app | 6 ++++++ ct/zipline.app | 6 ++++++ ct/zoraxy.app | 6 ++++++ ct/zwave-js-ui.app | 6 ++++++ 223 files changed, 1440 insertions(+) create mode 100644 ct/2fauth.app create mode 100644 ct/5etools.app create mode 100644 ct/actualbudget.app create mode 100644 ct/adguard.app create mode 100644 ct/adventurelog.app create mode 100644 ct/agentdvr.app create mode 100644 ct/alpine-docker.app create mode 100644 ct/alpine-grafana.app create mode 100644 ct/alpine-nextcloud.app create mode 100644 ct/alpine-vaultwarden.app create mode 100644 ct/alpine-zigbee2mqtt.app create mode 100644 ct/alpine.app create mode 100644 ct/apache-cassandra.app create mode 100644 ct/apache-couchdb.app create mode 100644 ct/apache-guacamole.app create mode 100644 ct/apt-cacher-ng.app create mode 100644 ct/archivebox.app create mode 100644 ct/aria2.app create mode 100644 ct/audiobookshelf.app create mode 100644 ct/authentik.app create mode 100644 ct/autobrr.app create mode 100644 ct/bazarr.app create mode 100644 ct/beszel.app create mode 100644 ct/blocky.app create mode 100644 ct/bookstack.app create mode 100644 ct/bunkerweb.app create mode 100644 ct/caddy.app create mode 100644 ct/calibre-web.app create mode 100644 ct/casaos.app create mode 100644 ct/changedetection.app create mode 100644 ct/channels.app create mode 100644 ct/checkmk.app create mode 100644 ct/cloudflared.app create mode 100644 ct/cockpit.app create mode 100644 ct/commafeed.app create mode 100644 ct/cronicle.app create mode 100644 ct/daemonsync.app create mode 100644 ct/dashy.app create mode 100644 ct/debian.app create mode 100644 ct/deconz.app create mode 100644 ct/deluge.app create mode 100644 ct/docker.app create mode 100644 ct/dockge.app create mode 100644 ct/dotnetaspwebapi.app create mode 100644 ct/emby.app create mode 100644 ct/emqx.app create mode 100644 ct/ersatztv.app create mode 100644 ct/esphome.app create mode 100644 ct/evcc.app create mode 100644 ct/fenrus.app create mode 100644 ct/fhem.app create mode 100644 ct/firefly.app create mode 100644 ct/flaresolverr.app create mode 100644 ct/flowiseai.app create mode 100644 ct/forgejo.app create mode 100644 ct/frigate.app create mode 100644 ct/ghost.app create mode 100644 ct/gitea.app create mode 100644 ct/glance.app create mode 100644 ct/glpi.app create mode 100644 ct/go2rtc.app create mode 100644 ct/gokapi.app create mode 100644 ct/gotify.app create mode 100644 ct/grafana.app create mode 100644 ct/grist.app create mode 100644 ct/grocy.app create mode 100644 ct/headscale.app create mode 100644 ct/heimdall-dashboard.app create mode 100644 ct/hivemq.app create mode 100644 ct/hoarder.app create mode 100644 ct/homarr.app create mode 100644 ct/homeassistant-core.app create mode 100644 ct/homeassistant.app create mode 100644 ct/homebox.app create mode 100644 ct/homebridge.app create mode 100644 ct/homepage.app create mode 100644 ct/homer.app create mode 100644 ct/hyperhdr.app create mode 100644 ct/hyperion.app create mode 100644 ct/influxdb.app create mode 100644 ct/inspircd.app create mode 100644 ct/iobroker.app create mode 100644 ct/iventoy.app create mode 100644 ct/jackett.app create mode 100644 ct/jellyfin.app create mode 100644 ct/jellyseerr.app create mode 100644 ct/jenkins.app create mode 100644 ct/kavita.app create mode 100644 ct/keycloak.app create mode 100644 ct/kimai.app create mode 100644 ct/komga.app create mode 100644 ct/komodo.app create mode 100644 ct/kubo.app create mode 100644 ct/lazylibrarian.app create mode 100644 ct/lidarr.app create mode 100644 ct/linkwarden.app create mode 100644 ct/listmonk.app create mode 100644 ct/lldap.app create mode 100644 ct/lubelogger.app create mode 100644 ct/mafl.app create mode 100644 ct/magicmirror.app create mode 100644 ct/mariadb.app create mode 100644 ct/matterbridge.app create mode 100644 ct/mediamtx.app create mode 100644 ct/medusa.app create mode 100644 ct/memos.app create mode 100644 ct/meshcentral.app create mode 100644 ct/metube.app create mode 100644 ct/mongodb.app create mode 100644 ct/motioneye.app create mode 100644 ct/mqtt.app create mode 100644 ct/mylar3.app create mode 100644 ct/myspeed.app create mode 100644 ct/mysql.app create mode 100644 ct/n8n.app create mode 100644 ct/navidrome.app create mode 100644 ct/neo4j.app create mode 100644 ct/netbox.app create mode 100644 ct/nextcloudpi.app create mode 100644 ct/nextpvr.app create mode 100644 ct/nginxproxymanager.app create mode 100644 ct/nocodb.app create mode 100644 ct/node-red.app create mode 100644 ct/notifiarr.app create mode 100644 ct/ntfy.app create mode 100644 ct/nzbget.app create mode 100644 ct/octoprint.app create mode 100644 ct/ollama.app create mode 100644 ct/omada.app create mode 100644 ct/ombi.app create mode 100644 ct/omv.app create mode 100644 ct/onedev.app create mode 100644 ct/opengist.app create mode 100644 ct/openhab.app create mode 100644 ct/openobserve.app create mode 100644 ct/openwebui.app create mode 100644 ct/overseerr.app create mode 100644 ct/owncast.app create mode 100644 ct/pairdrop.app create mode 100644 ct/paperless-ngx.app create mode 100644 ct/part-db.app create mode 100644 ct/pbs.app create mode 100644 ct/peanut.app create mode 100644 ct/petio.app create mode 100644 ct/pf2etools.app create mode 100644 ct/photoprism.app create mode 100644 ct/phpipam.app create mode 100644 ct/pialert.app create mode 100644 ct/pihole.app create mode 100644 ct/pingvin.app create mode 100644 ct/plex.app create mode 100644 ct/pocketbase.app create mode 100644 ct/podman-homeassistant.app create mode 100644 ct/podman.app create mode 100644 ct/postgresql.app create mode 100644 ct/projectsend.app create mode 100644 ct/prometheus-alertmanager.app create mode 100644 ct/prometheus.app create mode 100644 ct/prowlarr.app create mode 100644 ct/proxmox-datacenter-manager.app create mode 100644 ct/ps5-mqtt.app create mode 100644 ct/qbittorrent.app create mode 100644 ct/rabbitmq.app create mode 100644 ct/radarr.app create mode 100644 ct/rdtclient.app create mode 100644 ct/readarr.app create mode 100644 ct/readeck.app create mode 100644 ct/recyclarr.app create mode 100644 ct/redis.app create mode 100644 ct/rtsptoweb.app create mode 100644 ct/runtipi.app create mode 100644 ct/sabnzbd.app create mode 100644 ct/semaphore.app create mode 100644 ct/sftpgo.app create mode 100644 ct/shinobi.app create mode 100644 ct/silverbullet.app create mode 100644 ct/smokeping.app create mode 100644 ct/snipeit.app create mode 100644 ct/sonarr.app create mode 100644 ct/spoolman.app create mode 100644 ct/sqlserver2022.app create mode 100644 ct/stirling-pdf.app create mode 100644 ct/syncthing.app create mode 100644 ct/tandoor.app create mode 100644 ct/tasmoadmin.app create mode 100644 ct/tautulli.app create mode 100644 ct/tdarr.app create mode 100644 ct/technitiumdns.app create mode 100644 ct/teddycloud.app create mode 100644 ct/the-lounge.app create mode 100644 ct/threadfin.app create mode 100644 ct/tianji.app create mode 100644 ct/traccar.app create mode 100644 ct/traefik.app create mode 100644 ct/transmission.app create mode 100644 ct/trilium.app create mode 100644 ct/typesense.app create mode 100644 ct/ubuntu.app create mode 100644 ct/umami.app create mode 100644 ct/umbrel.app create mode 100644 ct/unbound.app create mode 100644 ct/unifi.app create mode 100644 ct/unmanic.app create mode 100644 ct/uptimekuma.app create mode 100644 ct/urbackupserver.app create mode 100644 ct/vaultwarden.app create mode 100644 ct/vikunja.app create mode 100644 ct/wallos.app create mode 100644 ct/wastebin.app create mode 100644 ct/watchyourlan.app create mode 100644 ct/wavelog.app create mode 100644 ct/whisparr.app create mode 100644 ct/whoogle.app create mode 100644 ct/wikijs.app create mode 100644 ct/wireguard.app create mode 100644 ct/wordpress.app create mode 100644 ct/yunohost.app create mode 100644 ct/zabbix.app create mode 100644 ct/zammad.app create mode 100644 ct/zigbee2mqtt.app create mode 100644 ct/zipline.app create mode 100644 ct/zoraxy.app create mode 100644 ct/zwave-js-ui.app diff --git a/ct/2fauth.app b/ct/2fauth.app new file mode 100644 index 00000000..b6421719 --- /dev/null +++ b/ct/2fauth.app @@ -0,0 +1,6 @@ + ___ _________ __ __ + |__ \ / ____/ | __ __/ /_/ /_ + __/ // /_ / /| |/ / / / __/ __ \ + / __// __/ / ___ / /_/ / /_/ / / / +/____/_/ /_/ |_\__,_/\__/_/ /_/ + diff --git a/ct/5etools.app b/ct/5etools.app new file mode 100644 index 00000000..1556067f --- /dev/null +++ b/ct/5etools.app @@ -0,0 +1,6 @@ + ______ __ __ + / ____/__ / /_____ ____ / /____ + /___ \/ _ \/ __/ __ \/ __ \/ / ___/ + ____/ / __/ /_/ /_/ / /_/ / (__ ) +/_____/\___/\__/\____/\____/_/____/ + diff --git a/ct/actualbudget.app b/ct/actualbudget.app new file mode 100644 index 00000000..db7f3093 --- /dev/null +++ b/ct/actualbudget.app @@ -0,0 +1,6 @@ + ___ __ __ ____ __ __ + / | _____/ /___ ______ _/ / / __ )__ ______/ /___ ____ / /_ + / /| |/ ___/ __/ / / / __ `/ / / __ / / / / __ / __ `/ _ \/ __/ + / ___ / /__/ /_/ /_/ / /_/ / / / /_/ / /_/ / /_/ / /_/ / __/ /_ +/_/ |_\___/\__/\__,_/\__,_/_/ /_____/\__,_/\__,_/\__, /\___/\__/ + /____/ diff --git a/ct/adguard.app b/ct/adguard.app new file mode 100644 index 00000000..2332df17 --- /dev/null +++ b/ct/adguard.app @@ -0,0 +1,6 @@ + ___ __ __ + / | ____/ /___ ___ ______ __________/ / + / /| |/ __ / __ `/ / / / __ `/ ___/ __ / + / ___ / /_/ / /_/ / /_/ / /_/ / / / /_/ / +/_/ |_\__,_/\__, /\__,_/\__,_/_/ \__,_/ + /____/ diff --git a/ct/adventurelog.app b/ct/adventurelog.app new file mode 100644 index 00000000..8e3c88d1 --- /dev/null +++ b/ct/adventurelog.app @@ -0,0 +1,6 @@ + ___ __ __ __ + / | ____/ / _____ ____ / /___ __________ / / ____ ____ _ + / /| |/ __ / | / / _ \/ __ \/ __/ / / / ___/ _ \/ / / __ \/ __ `/ + / ___ / /_/ /| |/ / __/ / / / /_/ /_/ / / / __/ /___/ /_/ / /_/ / +/_/ |_\__,_/ |___/\___/_/ /_/\__/\__,_/_/ \___/_____/\____/\__, / + /____/ diff --git a/ct/agentdvr.app b/ct/agentdvr.app new file mode 100644 index 00000000..dfe67792 --- /dev/null +++ b/ct/agentdvr.app @@ -0,0 +1,6 @@ + ___ __ ____ _ ______ + / | ____ ____ ____ / /_/ __ \ | / / __ \ + / /| |/ __ `/ _ \/ __ \/ __/ / / / | / / /_/ / + / ___ / /_/ / __/ / / / /_/ /_/ /| |/ / _, _/ +/_/ |_\__, /\___/_/ /_/\__/_____/ |___/_/ |_| + /____/ diff --git a/ct/alpine-docker.app b/ct/alpine-docker.app new file mode 100644 index 00000000..7fd1b265 --- /dev/null +++ b/ct/alpine-docker.app @@ -0,0 +1,6 @@ + ___ __ _ ____ __ + / | / /___ (_)___ ___ / __ \____ _____/ /_____ _____ + / /| | / / __ \/ / __ \/ _ \______/ / / / __ \/ ___/ //_/ _ \/ ___/ + / ___ |/ / /_/ / / / / / __/_____/ /_/ / /_/ / /__/ ,< / __/ / +/_/ |_/_/ .___/_/_/ /_/\___/ /_____/\____/\___/_/|_|\___/_/ + /_/ diff --git a/ct/alpine-grafana.app b/ct/alpine-grafana.app new file mode 100644 index 00000000..3fe493c9 --- /dev/null +++ b/ct/alpine-grafana.app @@ -0,0 +1,6 @@ + ___ __ _ ______ ____ + / | / /___ (_)___ ___ / ____/________ _/ __/___ _____ ____ _ + / /| | / / __ \/ / __ \/ _ \______/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/ + / ___ |/ / /_/ / / / / / __/_____/ /_/ / / / /_/ / __/ /_/ / / / / /_/ / +/_/ |_/_/ .___/_/_/ /_/\___/ \____/_/ \__,_/_/ \__,_/_/ /_/\__,_/ + /_/ diff --git a/ct/alpine-nextcloud.app b/ct/alpine-nextcloud.app new file mode 100644 index 00000000..b27eb0ca --- /dev/null +++ b/ct/alpine-nextcloud.app @@ -0,0 +1,12 @@ + ___ __ _ _ __ __ __ + / | / /___ (_)___ ___ / | / /__ _ __/ /______/ /___ __ __ + / /| | / / __ \/ / __ \/ _ \______/ |/ / _ \| |/_/ __/ ___/ / __ \/ / / / + / ___ |/ / /_/ / / / / / __/_____/ /| / __/> < +/_/ |_/_/ \___/_/ /_/_/ |___/\___/_____/\____/_/|_| + diff --git a/ct/aria2.app b/ct/aria2.app new file mode 100644 index 00000000..3080e17b --- /dev/null +++ b/ct/aria2.app @@ -0,0 +1,6 @@ + ___ _ ___ + / | _____(_)___ |__ \ + / /| | / ___/ / __ `/_/ / + / ___ |/ / / / /_/ / __/ +/_/ |_/_/ /_/\__,_/____/ + diff --git a/ct/audiobookshelf.app b/ct/audiobookshelf.app new file mode 100644 index 00000000..5e249a85 --- /dev/null +++ b/ct/audiobookshelf.app @@ -0,0 +1,6 @@ + ___ __ __ __ ______ + ____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/ + / __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_ +/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/ +\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/ + diff --git a/ct/authentik.app b/ct/authentik.app new file mode 100644 index 00000000..f609964e --- /dev/null +++ b/ct/authentik.app @@ -0,0 +1,6 @@ + ___ __ __ __ _ __ + / | __ __/ /_/ /_ ___ ____ / /_(_) /__ + / /| |/ / / / __/ __ \/ _ \/ __ \/ __/ / //_/ + / ___ / /_/ / /_/ / / / __/ / / / /_/ / ,< +/_/ |_\__,_/\__/_/ /_/\___/_/ /_/\__/_/_/|_| + diff --git a/ct/autobrr.app b/ct/autobrr.app new file mode 100644 index 00000000..56322d59 --- /dev/null +++ b/ct/autobrr.app @@ -0,0 +1,6 @@ + ___ __ __ + / | __ __/ /_____ / /_ __________ + / /| |/ / / / __/ __ \/ __ \/ ___/ ___/ + / ___ / /_/ / /_/ /_/ / /_/ / / / / +/_/ |_\__,_/\__/\____/_.___/_/ /_/ + diff --git a/ct/bazarr.app b/ct/bazarr.app new file mode 100644 index 00000000..e487a77d --- /dev/null +++ b/ct/bazarr.app @@ -0,0 +1,6 @@ + ____ + / __ )____ _____ ____ ___________ + / __ / __ `/_ / / __ `/ ___/ ___/ + / /_/ / /_/ / / /_/ /_/ / / / / +/_____/\__,_/ /___/\__,_/_/ /_/ + diff --git a/ct/beszel.app b/ct/beszel.app new file mode 100644 index 00000000..dcb0d38d --- /dev/null +++ b/ct/beszel.app @@ -0,0 +1,6 @@ + ____ __ + / __ )___ _________ ___ / / + / __ / _ \/ ___/_ / / _ \/ / + / /_/ / __(__ ) / /_/ __/ / +/_____/\___/____/ /___/\___/_/ + diff --git a/ct/blocky.app b/ct/blocky.app new file mode 100644 index 00000000..3bd089ba --- /dev/null +++ b/ct/blocky.app @@ -0,0 +1,6 @@ + ____ __ __ + / __ )/ /___ _____/ /____ __ + / __ / / __ \/ ___/ //_/ / / / + / /_/ / / /_/ / /__/ ,< / /_/ / +/_____/_/\____/\___/_/|_|\__, / + /____/ diff --git a/ct/bookstack.app b/ct/bookstack.app new file mode 100644 index 00000000..f6864666 --- /dev/null +++ b/ct/bookstack.app @@ -0,0 +1,6 @@ + ____ __ __ __ + / __ )____ ____ / /_______/ /_____ ______/ /__ + / __ / __ \/ __ \/ //_/ ___/ __/ __ `/ ___/ //_/ + / /_/ / /_/ / /_/ / ,< (__ ) /_/ /_/ / /__/ ,< +/_____/\____/\____/_/|_/____/\__/\__,_/\___/_/|_| + diff --git a/ct/bunkerweb.app b/ct/bunkerweb.app new file mode 100644 index 00000000..188677c4 --- /dev/null +++ b/ct/bunkerweb.app @@ -0,0 +1,6 @@ + ____ __ _ __ __ + / __ )__ ______ / /_____ ____| | / /__ / /_ + / __ / / / / __ \/ //_/ _ \/ ___/ | /| / / _ \/ __ \ + / /_/ / /_/ / / / / ,< / __/ / | |/ |/ / __/ /_/ / +/_____/\__,_/_/ /_/_/|_|\___/_/ |__/|__/\___/_.___/ + diff --git a/ct/caddy.app b/ct/caddy.app new file mode 100644 index 00000000..6f47f962 --- /dev/null +++ b/ct/caddy.app @@ -0,0 +1,6 @@ + ______ __ __ + / ____/___ _____/ /___/ /_ __ + / / / __ `/ __ / __ / / / / +/ /___/ /_/ / /_/ / /_/ / /_/ / +\____/\__,_/\__,_/\__,_/\__, / + /____/ diff --git a/ct/calibre-web.app b/ct/calibre-web.app new file mode 100644 index 00000000..ae9dc037 --- /dev/null +++ b/ct/calibre-web.app @@ -0,0 +1,6 @@ + ______ ___ __ _ __ __ + / ____/___ _/ (_) /_ ________ | | / /__ / /_ + / / / __ `/ / / __ \/ ___/ _ \_____| | /| / / _ \/ __ \ +/ /___/ /_/ / / / /_/ / / / __/_____/ |/ |/ / __/ /_/ / +\____/\__,_/_/_/_.___/_/ \___/ |__/|__/\___/_.___/ + diff --git a/ct/casaos.app b/ct/casaos.app new file mode 100644 index 00000000..4af563a2 --- /dev/null +++ b/ct/casaos.app @@ -0,0 +1,6 @@ + ______ ____ _____ + / ____/___ __________ _/ __ \/ ___/ + / / / __ `/ ___/ __ `/ / / /\__ \ +/ /___/ /_/ (__ ) /_/ / /_/ /___/ / +\____/\__,_/____/\__,_/\____//____/ + diff --git a/ct/changedetection.app b/ct/changedetection.app new file mode 100644 index 00000000..bf9fefb4 --- /dev/null +++ b/ct/changedetection.app @@ -0,0 +1,12 @@ + ________ + / ____/ /_ ____ _____ ____ ____ + / / / __ \/ __ `/ __ \/ __ `/ _ \ +/ /___/ / / / /_/ / / / / /_/ / __/ +\____/_/ /_/\__,_/_/ /_/\__, /\___/ + /____/ + ____ __ __ _ + / __ \___ / /____ _____/ /_(_)___ ____ + / / / / _ \/ __/ _ \/ ___/ __/ / __ \/ __ \ + / /_/ / __/ /_/ __/ /__/ /_/ / /_/ / / / / +/_____/\___/\__/\___/\___/\__/_/\____/_/ /_/ + diff --git a/ct/channels.app b/ct/channels.app new file mode 100644 index 00000000..7600b6e4 --- /dev/null +++ b/ct/channels.app @@ -0,0 +1,6 @@ + ________ __ + / ____/ /_ ____ _____ ____ ___ / /____ + / / / __ \/ __ `/ __ \/ __ \/ _ \/ / ___/ +/ /___/ / / / /_/ / / / / / / / __/ (__ ) +\____/_/ /_/\__,_/_/ /_/_/ /_/\___/_/____/ + diff --git a/ct/checkmk.app b/ct/checkmk.app new file mode 100644 index 00000000..ff80000c --- /dev/null +++ b/ct/checkmk.app @@ -0,0 +1,6 @@ + __ __ __ + _____/ /_ ___ _____/ /______ ___ / /__ + / ___/ __ \/ _ \/ ___/ //_/ __ `__ \/ //_/ +/ /__/ / / / __/ /__/ ,< / / / / / / ,< +\___/_/ /_/\___/\___/_/|_/_/ /_/ /_/_/|_| + diff --git a/ct/cloudflared.app b/ct/cloudflared.app new file mode 100644 index 00000000..8011c2c2 --- /dev/null +++ b/ct/cloudflared.app @@ -0,0 +1,6 @@ + ________ ________ __ + / ____/ /___ __ ______/ / __/ /___ _________ ____/ / + / / / / __ \/ / / / __ / /_/ / __ `/ ___/ _ \/ __ / +/ /___/ / /_/ / /_/ / /_/ / __/ / /_/ / / / __/ /_/ / +\____/_/\____/\__,_/\__,_/_/ /_/\__,_/_/ \___/\__,_/ + diff --git a/ct/cockpit.app b/ct/cockpit.app new file mode 100644 index 00000000..8eb04a26 --- /dev/null +++ b/ct/cockpit.app @@ -0,0 +1,6 @@ + ______ __ _ __ + / ____/___ _____/ /______ (_) /_ + / / / __ \/ ___/ //_/ __ \/ / __/ +/ /___/ /_/ / /__/ ,< / /_/ / / /_ +\____/\____/\___/_/|_/ .___/_/\__/ + /_/ diff --git a/ct/commafeed.app b/ct/commafeed.app new file mode 100644 index 00000000..06beb9a5 --- /dev/null +++ b/ct/commafeed.app @@ -0,0 +1,6 @@ + ______ ______ __ + / ____/___ ____ ___ ____ ___ ____ _/ ____/__ ___ ____/ / + / / / __ \/ __ `__ \/ __ `__ \/ __ `/ /_ / _ \/ _ \/ __ / +/ /___/ /_/ / / / / / / / / / / / /_/ / __/ / __/ __/ /_/ / +\____/\____/_/ /_/ /_/_/ /_/ /_/\__,_/_/ \___/\___/\__,_/ + diff --git a/ct/cronicle.app b/ct/cronicle.app new file mode 100644 index 00000000..6d6f7cfc --- /dev/null +++ b/ct/cronicle.app @@ -0,0 +1,6 @@ + ______ _ __ + / ____/________ ____ (_)____/ /__ + / / / ___/ __ \/ __ \/ / ___/ / _ \ +/ /___/ / / /_/ / / / / / /__/ / __/ +\____/_/ \____/_/ /_/_/\___/_/\___/ + diff --git a/ct/daemonsync.app b/ct/daemonsync.app new file mode 100644 index 00000000..53207237 --- /dev/null +++ b/ct/daemonsync.app @@ -0,0 +1,6 @@ + ____ _____ + / __ \____ ____ ____ ___ ____ ____ / ___/__ ______ _____ + / / / / __ `/ _ \/ __ `__ \/ __ \/ __ \ \__ \/ / / / __ \/ ___/ + / /_/ / /_/ / __/ / / / / / /_/ / / / / ___/ / /_/ / / / / /__ +/_____/\__,_/\___/_/ /_/ /_/\____/_/ /_/ /____/\__, /_/ /_/\___/ + /____/ diff --git a/ct/dashy.app b/ct/dashy.app new file mode 100644 index 00000000..330f9e3d --- /dev/null +++ b/ct/dashy.app @@ -0,0 +1,6 @@ + ____ __ + / __ \____ ______/ /_ __ __ + / / / / __ `/ ___/ __ \/ / / / + / /_/ / /_/ (__ ) / / / /_/ / +/_____/\__,_/____/_/ /_/\__, / + /____/ diff --git a/ct/debian.app b/ct/debian.app new file mode 100644 index 00000000..a6f474d4 --- /dev/null +++ b/ct/debian.app @@ -0,0 +1,6 @@ + ____ __ _ + / __ \___ / /_ (_)___ _____ + / / / / _ \/ __ \/ / __ `/ __ \ + / /_/ / __/ /_/ / / /_/ / / / / +/_____/\___/_.___/_/\__,_/_/ /_/ + diff --git a/ct/deconz.app b/ct/deconz.app new file mode 100644 index 00000000..fcfceb28 --- /dev/null +++ b/ct/deconz.app @@ -0,0 +1,6 @@ + __ __________ _ _______ + ____/ /__ / ____/ __ \/ | / /__ / + / __ / _ \/ / / / / / |/ / / / +/ /_/ / __/ /___/ /_/ / /| / / /__ +\__,_/\___/\____/\____/_/ |_/ /____/ + diff --git a/ct/deluge.app b/ct/deluge.app new file mode 100644 index 00000000..6dc49d04 --- /dev/null +++ b/ct/deluge.app @@ -0,0 +1,6 @@ + ____ __ + / __ \___ / /_ ______ ____ + / / / / _ \/ / / / / __ `/ _ \ + / /_/ / __/ / /_/ / /_/ / __/ +/_____/\___/_/\__,_/\__, /\___/ + /____/ diff --git a/ct/docker.app b/ct/docker.app new file mode 100644 index 00000000..907ffbae --- /dev/null +++ b/ct/docker.app @@ -0,0 +1,6 @@ + ____ __ + / __ \____ _____/ /_____ _____ + / / / / __ \/ ___/ //_/ _ \/ ___/ + / /_/ / /_/ / /__/ ,< / __/ / +/_____/\____/\___/_/|_|\___/_/ + diff --git a/ct/dockge.app b/ct/dockge.app new file mode 100644 index 00000000..040b66ac --- /dev/null +++ b/ct/dockge.app @@ -0,0 +1,6 @@ + ____ __ + / __ \____ _____/ /______ ____ + / / / / __ \/ ___/ //_/ __ `/ _ \ + / /_/ / /_/ / /__/ ,< / /_/ / __/ +/_____/\____/\___/_/|_|\__, /\___/ + /____/ diff --git a/ct/dotnetaspwebapi.app b/ct/dotnetaspwebapi.app new file mode 100644 index 00000000..f00b63ca --- /dev/null +++ b/ct/dotnetaspwebapi.app @@ -0,0 +1,12 @@ + ____ __ __ ___ _____ ____ _ __ __ + / __ \____ / /_____ ___ / /_ / | / ___// __ \ | | / /__ / /_ + / / / / __ \/ __/ __ \/ _ \/ __/ / /| | \__ \/ /_/ / | | /| / / _ \/ __ \ + / /_/ / /_/ / /_/ / / / __/ /_ / ___ |___/ / ____/ | |/ |/ / __/ /_/ / +/_____/\____/\__/_/ /_/\___/\__/ /_/ |_/____/_/ |__/|__/\___/_.___/ + + ___ ____ ____ + / | / __ \/ _/ + / /| | / /_/ // / + / ___ |/ ____// / +/_/ |_/_/ /___/ + diff --git a/ct/emby.app b/ct/emby.app new file mode 100644 index 00000000..84afb1d6 --- /dev/null +++ b/ct/emby.app @@ -0,0 +1,6 @@ + ______ __ + / ____/___ ___ / /_ __ __ + / __/ / __ `__ \/ __ \/ / / / + / /___/ / / / / / /_/ / /_/ / +/_____/_/ /_/ /_/_.___/\__, / + /____/ diff --git a/ct/emqx.app b/ct/emqx.app new file mode 100644 index 00000000..f6cb5038 --- /dev/null +++ b/ct/emqx.app @@ -0,0 +1,6 @@ + ________ _______ _ __ + / ____/ |/ / __ \ | |/ / + / __/ / /|_/ / / / / | / + / /___/ / / / /_/ / / | +/_____/_/ /_/\___\_\/_/|_| + diff --git a/ct/ersatztv.app b/ct/ersatztv.app new file mode 100644 index 00000000..f47317c3 --- /dev/null +++ b/ct/ersatztv.app @@ -0,0 +1,6 @@ + ______ __ _______ __ + / ____/_____________ _/ /_____/_ __/ | / / + / __/ / ___/ ___/ __ `/ __/_ / / / | | / / + / /___/ / (__ ) /_/ / /_ / /_/ / | |/ / +/_____/_/ /____/\__,_/\__/ /___/_/ |___/ + diff --git a/ct/esphome.app b/ct/esphome.app new file mode 100644 index 00000000..5c9e86c6 --- /dev/null +++ b/ct/esphome.app @@ -0,0 +1,6 @@ + ___________ ____ __ __ + / ____/ ___// __ \/ / / /___ ____ ___ ___ + / __/ \__ \/ /_/ / /_/ / __ \/ __ `__ \/ _ \ + / /___ ___/ / ____/ __ / /_/ / / / / / / __/ +/_____//____/_/ /_/ /_/\____/_/ /_/ /_/\___/ + diff --git a/ct/evcc.app b/ct/evcc.app new file mode 100644 index 00000000..9317a541 --- /dev/null +++ b/ct/evcc.app @@ -0,0 +1,6 @@ + + ___ _ ____________ + / _ \ | / / ___/ ___/ +/ __/ |/ / /__/ /__ +\___/|___/\___/\___/ + diff --git a/ct/fenrus.app b/ct/fenrus.app new file mode 100644 index 00000000..95e073aa --- /dev/null +++ b/ct/fenrus.app @@ -0,0 +1,6 @@ + ______ + / ____/__ ____ _______ _______ + / /_ / _ \/ __ \/ ___/ / / / ___/ + / __/ / __/ / / / / / /_/ (__ ) +/_/ \___/_/ /_/_/ \__,_/____/ + diff --git a/ct/fhem.app b/ct/fhem.app new file mode 100644 index 00000000..fe0a80c4 --- /dev/null +++ b/ct/fhem.app @@ -0,0 +1,6 @@ + ________ __________ ___ + / ____/ / / / ____/ |/ / + / /_ / /_/ / __/ / /|_/ / + / __/ / __ / /___/ / / / +/_/ /_/ /_/_____/_/ /_/ + diff --git a/ct/firefly.app b/ct/firefly.app new file mode 100644 index 00000000..3aabc10c --- /dev/null +++ b/ct/firefly.app @@ -0,0 +1,6 @@ + _______ ______ + / ____(_)_______ / __/ /_ __ + / /_ / / ___/ _ \/ /_/ / / / / + / __/ / / / / __/ __/ / /_/ / +/_/ /_/_/ \___/_/ /_/\__, / + /____/ diff --git a/ct/flaresolverr.app b/ct/flaresolverr.app new file mode 100644 index 00000000..a710dd62 --- /dev/null +++ b/ct/flaresolverr.app @@ -0,0 +1,6 @@ + ________ _____ __ + / ____/ /___ _________ / ___/____ / / _____ __________ + / /_ / / __ `/ ___/ _ \\__ \/ __ \/ / | / / _ \/ ___/ ___/ + / __/ / / /_/ / / / __/__/ / /_/ / /| |/ / __/ / / / +/_/ /_/\__,_/_/ \___/____/\____/_/ |___/\___/_/ /_/ + diff --git a/ct/flowiseai.app b/ct/flowiseai.app new file mode 100644 index 00000000..7011f22b --- /dev/null +++ b/ct/flowiseai.app @@ -0,0 +1,6 @@ + ________ _ ___ ____ + / ____/ /___ _ __(_)_______ / | / _/ + / /_ / / __ \ | /| / / / ___/ _ \/ /| | / / + / __/ / / /_/ / |/ |/ / (__ ) __/ ___ |_/ / +/_/ /_/\____/|__/|__/_/____/\___/_/ |_/___/ + diff --git a/ct/forgejo.app b/ct/forgejo.app new file mode 100644 index 00000000..4fb3af69 --- /dev/null +++ b/ct/forgejo.app @@ -0,0 +1,6 @@ + ______ _ + / ____/___ _________ ____ (_)___ + / /_ / __ \/ ___/ __ `/ _ \ / / __ \ + / __/ / /_/ / / / /_/ / __/ / / /_/ / +/_/ \____/_/ \__, /\___/_/ /\____/ + /____/ /___/ diff --git a/ct/frigate.app b/ct/frigate.app new file mode 100644 index 00000000..94ffd3a7 --- /dev/null +++ b/ct/frigate.app @@ -0,0 +1,6 @@ + ______ _ __ + / ____/____(_)___ _____ _/ /____ + / /_ / ___/ / __ `/ __ `/ __/ _ \ + / __/ / / / / /_/ / /_/ / /_/ __/ +/_/ /_/ /_/\__, /\__,_/\__/\___/ + /____/ diff --git a/ct/ghost.app b/ct/ghost.app new file mode 100644 index 00000000..c16e83b8 --- /dev/null +++ b/ct/ghost.app @@ -0,0 +1,6 @@ + ________ __ + / ____/ /_ ____ _____/ /_ + / / __/ __ \/ __ \/ ___/ __/ +/ /_/ / / / / /_/ (__ ) /_ +\____/_/ /_/\____/____/\__/ + diff --git a/ct/gitea.app b/ct/gitea.app new file mode 100644 index 00000000..7826ac30 --- /dev/null +++ b/ct/gitea.app @@ -0,0 +1,6 @@ + _______ __ + / ____(_) /____ ____ _ + / / __/ / __/ _ \/ __ `/ +/ /_/ / / /_/ __/ /_/ / +\____/_/\__/\___/\__,_/ + diff --git a/ct/glance.app b/ct/glance.app new file mode 100644 index 00000000..abaaa8af --- /dev/null +++ b/ct/glance.app @@ -0,0 +1,6 @@ + ________ + / ____/ /___ _____ ________ + / / __/ / __ `/ __ \/ ___/ _ \ +/ /_/ / / /_/ / / / / /__/ __/ +\____/_/\__,_/_/ /_/\___/\___/ + diff --git a/ct/glpi.app b/ct/glpi.app new file mode 100644 index 00000000..789b6259 --- /dev/null +++ b/ct/glpi.app @@ -0,0 +1,6 @@ + ________ ____ ____ + / ____/ / / __ \/ _/ + / / __/ / / /_/ // / +/ /_/ / /___/ ____// / +\____/_____/_/ /___/ + diff --git a/ct/go2rtc.app b/ct/go2rtc.app new file mode 100644 index 00000000..3a3e8bf8 --- /dev/null +++ b/ct/go2rtc.app @@ -0,0 +1,6 @@ + ___ __ + ____ _____ |__ \ _____/ /______ + / __ `/ __ \__/ // ___/ __/ ___/ + / /_/ / /_/ / __// / / /_/ /__ + \__, /\____/____/_/ \__/\___/ +/____/ diff --git a/ct/gokapi.app b/ct/gokapi.app new file mode 100644 index 00000000..c612c9fa --- /dev/null +++ b/ct/gokapi.app @@ -0,0 +1,6 @@ + ______ __ _ + / ____/___ / /______ _____ (_) + / / __/ __ \/ //_/ __ `/ __ \/ / +/ /_/ / /_/ / ,< / /_/ / /_/ / / +\____/\____/_/|_|\__,_/ .___/_/ + /_/ diff --git a/ct/gotify.app b/ct/gotify.app new file mode 100644 index 00000000..8532f9ef --- /dev/null +++ b/ct/gotify.app @@ -0,0 +1,6 @@ + ______ __ _ ____ + / ____/___ / /_(_) __/_ __ + / / __/ __ \/ __/ / /_/ / / / +/ /_/ / /_/ / /_/ / __/ /_/ / +\____/\____/\__/_/_/ \__, / + /____/ diff --git a/ct/grafana.app b/ct/grafana.app new file mode 100644 index 00000000..9eb8a245 --- /dev/null +++ b/ct/grafana.app @@ -0,0 +1,6 @@ + ______ ____ + / ____/________ _/ __/___ _____ ____ _ + / / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/ +/ /_/ / / / /_/ / __/ /_/ / / / / /_/ / +\____/_/ \__,_/_/ \__,_/_/ /_/\__,_/ + diff --git a/ct/grist.app b/ct/grist.app new file mode 100644 index 00000000..f82ced4f --- /dev/null +++ b/ct/grist.app @@ -0,0 +1,6 @@ + ______ _ __ + / ____/____(_)____/ /_ + / / __/ ___/ / ___/ __/ +/ /_/ / / / (__ ) /_ +\____/_/ /_/____/\__/ + diff --git a/ct/grocy.app b/ct/grocy.app new file mode 100644 index 00000000..2aad01d4 --- /dev/null +++ b/ct/grocy.app @@ -0,0 +1,6 @@ + + ____ __________ _______ __ + / __ `/ ___/ __ \/ ___/ / / / + / /_/ / / / /_/ / /__/ /_/ / + \__, /_/ \____/\___/\__, / +/____/ /____/ diff --git a/ct/headscale.app b/ct/headscale.app new file mode 100644 index 00000000..ff8ca514 --- /dev/null +++ b/ct/headscale.app @@ -0,0 +1,6 @@ + __ __ __ __ + / / / /__ ____ _____/ /_____________ _/ /__ + / /_/ / _ \/ __ `/ __ / ___/ ___/ __ `/ / _ \ + / __ / __/ /_/ / /_/ (__ ) /__/ /_/ / / __/ +/_/ /_/\___/\__,_/\__,_/____/\___/\__,_/_/\___/ + diff --git a/ct/heimdall-dashboard.app b/ct/heimdall-dashboard.app new file mode 100644 index 00000000..245902b7 --- /dev/null +++ b/ct/heimdall-dashboard.app @@ -0,0 +1,12 @@ + __ __ _ __ ____ ____ __ __ + / / / /__ (_)___ ___ ____/ /___ _/ / / / __ \____ ______/ /_ / /_ + / /_/ / _ \/ / __ `__ \/ __ / __ `/ / /_____/ / / / __ `/ ___/ __ \/ __ \ + / __ / __/ / / / / / / /_/ / /_/ / / /_____/ /_/ / /_/ (__ ) / / / /_/ / +/_/ /_/\___/_/_/ /_/ /_/\__,_/\__,_/_/_/ /_____/\__,_/____/_/ /_/_.___/ + + __ + ____ ____ __________/ / + / __ \/ __ `/ ___/ __ / +/ /_/ / /_/ / / / /_/ / +\____/\__,_/_/ \__,_/ + diff --git a/ct/hivemq.app b/ct/hivemq.app new file mode 100644 index 00000000..ac5216a7 --- /dev/null +++ b/ct/hivemq.app @@ -0,0 +1,6 @@ + __ ___ __ _______ + / / / (_) _____ / |/ / __ \ + / /_/ / / | / / _ \/ /|_/ / / / / + / __ / /| |/ / __/ / / / /_/ / +/_/ /_/_/ |___/\___/_/ /_/\___\_\ + diff --git a/ct/hoarder.app b/ct/hoarder.app new file mode 100644 index 00000000..c09416d4 --- /dev/null +++ b/ct/hoarder.app @@ -0,0 +1,6 @@ + __ __ __ + / / / /___ ____ __________/ /__ _____ + / /_/ / __ \/ __ `/ ___/ __ / _ \/ ___/ + / __ / /_/ / /_/ / / / /_/ / __/ / +/_/ /_/\____/\__,_/_/ \__,_/\___/_/ + diff --git a/ct/homarr.app b/ct/homarr.app new file mode 100644 index 00000000..1bd7a939 --- /dev/null +++ b/ct/homarr.app @@ -0,0 +1,6 @@ + __ __ + / / / /___ ____ ___ ____ ___________ + / /_/ / __ \/ __ `__ \/ __ `/ ___/ ___/ + / __ / /_/ / / / / / / /_/ / / / / +/_/ /_/\____/_/ /_/ /_/\__,_/_/ /_/ + diff --git a/ct/homeassistant-core.app b/ct/homeassistant-core.app new file mode 100644 index 00000000..efbc1643 --- /dev/null +++ b/ct/homeassistant-core.app @@ -0,0 +1,12 @@ + __ __ + / / / /___ ____ ___ ___ + / /_/ / __ \/ __ `__ \/ _ \ + / __ / /_/ / / / / / / __/ +/_/ /_/\____/_/ /_/ /_/\___/ + + ___ _ __ __ ______ + / | __________(_)____/ /_____ _____ / /_ / ____/___ ________ + / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/_____/ / / __ \/ ___/ _ \ + / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_/_____/ /___/ /_/ / / / __/ +/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/ + diff --git a/ct/homeassistant.app b/ct/homeassistant.app new file mode 100644 index 00000000..a88730f4 --- /dev/null +++ b/ct/homeassistant.app @@ -0,0 +1,6 @@ + __ __ ___ _ __ __ + / / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_ + / /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ + / __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ +/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ + diff --git a/ct/homebox.app b/ct/homebox.app new file mode 100644 index 00000000..da717216 --- /dev/null +++ b/ct/homebox.app @@ -0,0 +1,6 @@ + __ __ ____ + / / / /___ ____ ___ ___ / __ )____ _ __ + / /_/ / __ \/ __ `__ \/ _ \/ __ / __ \| |/_/ + / __ / /_/ / / / / / / __/ /_/ / /_/ /> < +/_/ /_/\____/_/ /_/ /_/\___/_____/\____/_/|_| + diff --git a/ct/homebridge.app b/ct/homebridge.app new file mode 100644 index 00000000..a3da0240 --- /dev/null +++ b/ct/homebridge.app @@ -0,0 +1,6 @@ + __ __ __ _ __ + / / / /___ ____ ___ ___ / /_ _____(_)___/ /___ ____ + / /_/ / __ \/ __ `__ \/ _ \/ __ \/ ___/ / __ / __ `/ _ \ + / __ / /_/ / / / / / / __/ /_/ / / / / /_/ / /_/ / __/ +/_/ /_/\____/_/ /_/ /_/\___/_.___/_/ /_/\__,_/\__, /\___/ + /____/ diff --git a/ct/homepage.app b/ct/homepage.app new file mode 100644 index 00000000..4ff42a16 --- /dev/null +++ b/ct/homepage.app @@ -0,0 +1,6 @@ + __ __ + / / / /___ ____ ___ ___ ____ ____ _____ ____ + / /_/ / __ \/ __ `__ \/ _ \/ __ \/ __ `/ __ `/ _ \ + / __ / /_/ / / / / / / __/ /_/ / /_/ / /_/ / __/ +/_/ /_/\____/_/ /_/ /_/\___/ .___/\__,_/\__, /\___/ + /_/ /____/ diff --git a/ct/homer.app b/ct/homer.app new file mode 100644 index 00000000..80e4281a --- /dev/null +++ b/ct/homer.app @@ -0,0 +1,6 @@ + __ __ + / / / /___ ____ ___ ___ _____ + / /_/ / __ \/ __ `__ \/ _ \/ ___/ + / __ / /_/ / / / / / / __/ / +/_/ /_/\____/_/ /_/ /_/\___/_/ + diff --git a/ct/hyperhdr.app b/ct/hyperhdr.app new file mode 100644 index 00000000..cbbcfc57 --- /dev/null +++ b/ct/hyperhdr.app @@ -0,0 +1,6 @@ + __ __ __ ______ ____ + / / / /_ ______ ___ _____/ / / / __ \/ __ \ + / /_/ / / / / __ \/ _ \/ ___/ /_/ / / / / /_/ / + / __ / /_/ / /_/ / __/ / / __ / /_/ / _, _/ +/_/ /_/\__, / .___/\___/_/ /_/ /_/_____/_/ |_| + /____/_/ diff --git a/ct/hyperion.app b/ct/hyperion.app new file mode 100644 index 00000000..2c0f7972 --- /dev/null +++ b/ct/hyperion.app @@ -0,0 +1,6 @@ + __ __ _ + / / / /_ ______ ___ _____(_)___ ____ + / /_/ / / / / __ \/ _ \/ ___/ / __ \/ __ \ + / __ / /_/ / /_/ / __/ / / / /_/ / / / / +/_/ /_/\__, / .___/\___/_/ /_/\____/_/ /_/ + /____/_/ diff --git a/ct/influxdb.app b/ct/influxdb.app new file mode 100644 index 00000000..b8efea54 --- /dev/null +++ b/ct/influxdb.app @@ -0,0 +1,6 @@ + ____ ______ ____ ____ + / _/___ / __/ /_ ___ __/ __ \/ __ ) + / // __ \/ /_/ / / / / |/_/ / / / __ | + _/ // / / / __/ / /_/ /> < +/_/ |_/\___/\__/_____/\____/_/|_| + diff --git a/ct/nextcloudpi.app b/ct/nextcloudpi.app new file mode 100644 index 00000000..9aa8b594 --- /dev/null +++ b/ct/nextcloudpi.app @@ -0,0 +1,6 @@ + _ __ __ ________ ______ _ + / | / /__ _ __/ /_/ ____/ /___ __ ______/ / __ \(_) + / |/ / _ \| |/_/ __/ / / / __ \/ / / / __ / /_/ / / + / /| / __/> < / ____/ / / /_/ /> < +/_/ \__,_/ .___/\___/_/ /_/\___/____/____/ /_/ /_/\__, /_/|_| + /_/ /____/ diff --git a/ct/part-db.app b/ct/part-db.app new file mode 100644 index 00000000..fe325550 --- /dev/null +++ b/ct/part-db.app @@ -0,0 +1,6 @@ + ____ __ ____ ____ + / __ \____ ______/ /_ / __ \/ __ ) + / /_/ / __ `/ ___/ __/_____/ / / / __ | + / ____/ /_/ / / / /_/_____/ /_/ / /_/ / +/_/ \__,_/_/ \__/ /_____/_____/ + diff --git a/ct/pbs.app b/ct/pbs.app new file mode 100644 index 00000000..785d90a8 --- /dev/null +++ b/ct/pbs.app @@ -0,0 +1,6 @@ + ____ ____ _____ + / __ \/ __ ) ___/ + / /_/ / __ \__ \ + / ____/ /_/ /__/ / +/_/ /_____/____/ + diff --git a/ct/peanut.app b/ct/peanut.app new file mode 100644 index 00000000..11a2cd5c --- /dev/null +++ b/ct/peanut.app @@ -0,0 +1,6 @@ + ____ _ ____ ________ + / __ \___ ____ _/ | / / / / /_ __/ + / /_/ / _ \/ __ `/ |/ / / / / / / + / ____/ __/ /_/ / /| / /_/ / / / +/_/ \___/\__,_/_/ |_/\____/ /_/ + diff --git a/ct/petio.app b/ct/petio.app new file mode 100644 index 00000000..d8deb745 --- /dev/null +++ b/ct/petio.app @@ -0,0 +1,6 @@ + ____ __ _ + / __ \___ / /_(_)___ + / /_/ / _ \/ __/ / __ \ + / ____/ __/ /_/ / /_/ / +/_/ \___/\__/_/\____/ + diff --git a/ct/pf2etools.app b/ct/pf2etools.app new file mode 100644 index 00000000..b6f7cb10 --- /dev/null +++ b/ct/pf2etools.app @@ -0,0 +1,6 @@ + ____ _______ ______ __ + / __ \/ __/__ \ ___/_ __/___ ____ / /____ + / /_/ / /_ __/ // _ \/ / / __ \/ __ \/ / ___/ + / ____/ __// __// __/ / / /_/ / /_/ / (__ ) +/_/ /_/ /____/\___/_/ \____/\____/_/____/ + diff --git a/ct/photoprism.app b/ct/photoprism.app new file mode 100644 index 00000000..a8a9cabe --- /dev/null +++ b/ct/photoprism.app @@ -0,0 +1,6 @@ + ____ __ __ ____ _ + / __ \/ /_ ____ / /_____ / __ \_____(_)________ ___ + / /_/ / __ \/ __ \/ __/ __ \/ /_/ / ___/ / ___/ __ `__ \ + / ____/ / / / /_/ / /_/ /_/ / ____/ / / (__ ) / / / / / +/_/ /_/ /_/\____/\__/\____/_/ /_/ /_/____/_/ /_/ /_/ + diff --git a/ct/phpipam.app b/ct/phpipam.app new file mode 100644 index 00000000..51ba79de --- /dev/null +++ b/ct/phpipam.app @@ -0,0 +1,6 @@ + __ ________ ___ __ ___ + ____ / /_ ____ / _/ __ \/ | / |/ / + / __ \/ __ \/ __ \ / // /_/ / /| | / /|_/ / + / /_/ / / / / /_/ // // ____/ ___ |/ / / / + / .___/_/ /_/ .___/___/_/ /_/ |_/_/ /_/ +/_/ /_/ diff --git a/ct/pialert.app b/ct/pialert.app new file mode 100644 index 00000000..07f2474c --- /dev/null +++ b/ct/pialert.app @@ -0,0 +1,6 @@ + ____ _ ___ __ __ + / __ \(_) | / /__ _____/ /_ + / /_/ / / /| | / / _ \/ ___/ __/ + / ____/ / ___ |/ / __/ / / /_ +/_/ /_/_/ |_/_/\___/_/ \__/ + diff --git a/ct/pihole.app b/ct/pihole.app new file mode 100644 index 00000000..9a727b22 --- /dev/null +++ b/ct/pihole.app @@ -0,0 +1,6 @@ + ____ _ __ __ + / __ \(_) /_ ____ / /__ + / /_/ / / __ \/ __ \/ / _ \ + / ____/ / / / / /_/ / / __/ +/_/ /_/_/ /_/\____/_/\___/ + diff --git a/ct/pingvin.app b/ct/pingvin.app new file mode 100644 index 00000000..8177f817 --- /dev/null +++ b/ct/pingvin.app @@ -0,0 +1,6 @@ + ____ _ _ + / __ \(_)___ ____ __ __(_)___ + / /_/ / / __ \/ __ `/ | / / / __ \ + / ____/ / / / / /_/ /| |/ / / / / / +/_/ /_/_/ /_/\__, / |___/_/_/ /_/ + /____/ diff --git a/ct/plex.app b/ct/plex.app new file mode 100644 index 00000000..2e27d0b8 --- /dev/null +++ b/ct/plex.app @@ -0,0 +1,6 @@ + ____ __ + / __ \/ /__ _ __ + / /_/ / / _ \| |/_/ + / ____/ / __/> < +/_/ /_/\___/_/|_| + diff --git a/ct/pocketbase.app b/ct/pocketbase.app new file mode 100644 index 00000000..5eea8625 --- /dev/null +++ b/ct/pocketbase.app @@ -0,0 +1,6 @@ + ____ __ __ __ + / __ \____ _____/ /_____ / /_/ /_ ____ _________ + / /_/ / __ \/ ___/ //_/ _ \/ __/ __ \/ __ `/ ___/ _ \ + / ____/ /_/ / /__/ ,< / __/ /_/ /_/ / /_/ (__ ) __/ +/_/ \____/\___/_/|_|\___/\__/_.___/\__,_/____/\___/ + diff --git a/ct/podman-homeassistant.app b/ct/podman-homeassistant.app new file mode 100644 index 00000000..c1241da4 --- /dev/null +++ b/ct/podman-homeassistant.app @@ -0,0 +1,12 @@ + ____ __ __ __ + / __ \____ ____/ /___ ___ ____ _____ / / / /___ ____ ___ ___ + / /_/ / __ \/ __ / __ `__ \/ __ `/ __ \______/ /_/ / __ \/ __ `__ \/ _ \ + / ____/ /_/ / /_/ / / / / / / /_/ / / / /_____/ __ / /_/ / / / / / / __/ +/_/ \____/\__,_/_/ /_/ /_/\__,_/_/ /_/ /_/ /_/\____/_/ /_/ /_/\___/ + + ___ _ __ __ + / | __________(_)____/ /_____ _____ / /_ + / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ + / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ +/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ + diff --git a/ct/podman.app b/ct/podman.app new file mode 100644 index 00000000..2f81f14a --- /dev/null +++ b/ct/podman.app @@ -0,0 +1,6 @@ + ____ __ + / __ \____ ____/ /___ ___ ____ _____ + / /_/ / __ \/ __ / __ `__ \/ __ `/ __ \ + / ____/ /_/ / /_/ / / / / / / /_/ / / / / +/_/ \____/\__,_/_/ /_/ /_/\__,_/_/ /_/ + diff --git a/ct/postgresql.app b/ct/postgresql.app new file mode 100644 index 00000000..8297b0ad --- /dev/null +++ b/ct/postgresql.app @@ -0,0 +1,6 @@ + ____ __ _____ ____ __ + / __ \____ _____/ /_____ _________ / ___// __ \ / / + / /_/ / __ \/ ___/ __/ __ `/ ___/ _ \\__ \/ / / / / / + / ____/ /_/ (__ ) /_/ /_/ / / / __/__/ / /_/ / / /___ +/_/ \____/____/\__/\__, /_/ \___/____/\___\_\/_____/ + /____/ diff --git a/ct/projectsend.app b/ct/projectsend.app new file mode 100644 index 00000000..c388eb72 --- /dev/null +++ b/ct/projectsend.app @@ -0,0 +1,6 @@ + ____ _ __ _____ __ + / __ \_________ (_)__ _____/ /_/ ___/___ ____ ____/ / + / /_/ / ___/ __ \ / / _ \/ ___/ __/\__ \/ _ \/ __ \/ __ / + / ____/ / / /_/ / / / __/ /__/ /_ ___/ / __/ / / / /_/ / +/_/ /_/ \____/_/ /\___/\___/\__//____/\___/_/ /_/\__,_/ + /___/ diff --git a/ct/prometheus-alertmanager.app b/ct/prometheus-alertmanager.app new file mode 100644 index 00000000..43a4876b --- /dev/null +++ b/ct/prometheus-alertmanager.app @@ -0,0 +1,12 @@ + ____ __ __ ___ __ + / __ \_________ ____ ___ ___ / /_/ /_ ___ __ _______ / | / / + / /_/ / ___/ __ \/ __ `__ \/ _ \/ __/ __ \/ _ \/ / / / ___/_____/ /| | / / + / ____/ / / /_/ / / / / / / __/ /_/ / / / __/ /_/ (__ )_____/ ___ |/ / +/_/ /_/ \____/_/ /_/ /_/\___/\__/_/ /_/\___/\__,_/____/ /_/ |_/_/ + + __ + ___ _____/ /_____ ___ ____ _____ ____ _____ ____ _____ + / _ \/ ___/ __/ __ `__ \/ __ `/ __ \/ __ `/ __ `/ _ \/ ___/ +/ __/ / / /_/ / / / / / /_/ / / / / /_/ / /_/ / __/ / +\___/_/ \__/_/ /_/ /_/\__,_/_/ /_/\__,_/\__, /\___/_/ + /____/ diff --git a/ct/prometheus.app b/ct/prometheus.app new file mode 100644 index 00000000..f5a9cccc --- /dev/null +++ b/ct/prometheus.app @@ -0,0 +1,6 @@ + ____ __ __ + / __ \_________ ____ ___ ___ / /_/ /_ ___ __ _______ + / /_/ / ___/ __ \/ __ `__ \/ _ \/ __/ __ \/ _ \/ / / / ___/ + / ____/ / / /_/ / / / / / / __/ /_/ / / / __/ /_/ (__ ) +/_/ /_/ \____/_/ /_/ /_/\___/\__/_/ /_/\___/\__,_/____/ + diff --git a/ct/prowlarr.app b/ct/prowlarr.app new file mode 100644 index 00000000..10255b7a --- /dev/null +++ b/ct/prowlarr.app @@ -0,0 +1,6 @@ + ____ __ + / __ \_________ _ __/ /___ ___________ + / /_/ / ___/ __ \ | /| / / / __ `/ ___/ ___/ + / ____/ / / /_/ / |/ |/ / / /_/ / / / / +/_/ /_/ \____/|__/|__/_/\__,_/_/ /_/ + diff --git a/ct/proxmox-datacenter-manager.app b/ct/proxmox-datacenter-manager.app new file mode 100644 index 00000000..bd181cc9 --- /dev/null +++ b/ct/proxmox-datacenter-manager.app @@ -0,0 +1,18 @@ + __ __ + ____ _________ _ ______ ___ ____ _ __ ____/ /___ _/ /_____ _ + / __ \/ ___/ __ \| |/_/ __ `__ \/ __ \| |/_/_____/ __ / __ `/ __/ __ `/ + / /_/ / / / /_/ /> < +/____/\__,_/_.___/_.___/_/_/|_| + diff --git a/ct/zammad.app b/ct/zammad.app new file mode 100644 index 00000000..eb9999df --- /dev/null +++ b/ct/zammad.app @@ -0,0 +1,6 @@ + _____ __ +/__ / ____ _____ ___ ____ ___ ____ _____/ / + / / / __ `/ __ `__ \/ __ `__ \/ __ `/ __ / + / /__/ /_/ / / / / / / / / / / / /_/ / /_/ / +/____/\__,_/_/ /_/ /_/_/ /_/ /_/\__,_/\__,_/ + diff --git a/ct/zigbee2mqtt.app b/ct/zigbee2mqtt.app new file mode 100644 index 00000000..f6925a01 --- /dev/null +++ b/ct/zigbee2mqtt.app @@ -0,0 +1,6 @@ + _____ _ __ ___ __ _______ ____________ +/__ / (_)___ _/ /_ ___ ___ |__ \ / |/ / __ \/_ __/_ __/ + / / / / __ `/ __ \/ _ \/ _ \__/ // /|_/ / / / / / / / / + / /__/ / /_/ / /_/ / __/ __/ __// / / / /_/ / / / / / +/____/_/\__, /_.___/\___/\___/____/_/ /_/\___\_\/_/ /_/ + /____/ diff --git a/ct/zipline.app b/ct/zipline.app new file mode 100644 index 00000000..ce2b4b91 --- /dev/null +++ b/ct/zipline.app @@ -0,0 +1,6 @@ + _____ _ ___ +/__ / (_)___ / (_)___ ___ + / / / / __ \/ / / __ \/ _ \ + / /__/ / /_/ / / / / / / __/ +/____/_/ .___/_/_/_/ /_/\___/ + /_/ diff --git a/ct/zoraxy.app b/ct/zoraxy.app new file mode 100644 index 00000000..f93198af --- /dev/null +++ b/ct/zoraxy.app @@ -0,0 +1,6 @@ + _____ +/__ / ____ _________ __ ____ __ + / / / __ \/ ___/ __ `/ |/_/ / / / + / /__/ /_/ / / / /_/ /> Date: Fri, 24 Jan 2025 14:06:03 +0100 Subject: [PATCH 20/36] fix reapproval --- .github/workflows/auto-update-app-headers.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 15f7ee04..f1303ebd 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -70,9 +70,20 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | + # Get the PR number for the current branch PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') - PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') - if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then - gh pr review "$PR_NUMBER" --approve + + # Check if a PR number was retrieved + if [ -n "$PR_NUMBER" ]; then + # Get the PR author + PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') + + # Approve the PR if it was not created by the bot + if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then + gh pr review "$PR_NUMBER" --approve + else + echo "PR was created by the bot, skipping review." + fi else - echo "PR was created by the bot, skipping review." + echo "No PR found for the current branch." + fi From 3cea72cf51aacbdec93b6c2f0d88d19b8381d53c Mon Sep 17 00:00:00 2001 From: "community-scripts-pr-app[bot]" <189241966+community-scripts-pr-app[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:06:24 +0100 Subject: [PATCH 21/36] Update CHANGELOG.md (#1720) Co-authored-by: github-actions[bot] --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f709fe0..443239b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,10 @@ Do not break established syntax in this file, as it is automatically updated by - Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712)) - Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714)) +### 🧰 Maintenance + +- [Core] Better Creation of App Headers for next feature [@MickLesk](https://github.com/MickLesk) ([#1719](https://github.com/community-scripts/ProxmoxVE/pull/1719)) + ## 2025-01-23 ### Changed From 1c008a1742bb12a974ec52c073b1e9b96fab2644 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:09:09 +0100 Subject: [PATCH 22/36] diff check --- .github/workflows/auto-update-app-headers.yml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index f1303ebd..3d01ec45 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -39,11 +39,17 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # Step 5: Check for changes + # Step 5: Check if there are any changes - name: Check if there are any changes id: verify-diff run: | - git diff --quiet . || echo "changed=true" >> $GITHUB_OUTPUT + if git diff --quiet; then + echo "No changes detected." + echo "changed=false" >> $GITHUB_OUTPUT + else + echo "Changes detected." + echo "changed=true" >> $GITHUB_OUTPUT + fi # Step 6: Commit changes (if any) and create a PR - name: Commit and create PR if changes exist @@ -51,8 +57,9 @@ jobs: run: | git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com" - git add ct/*.app + git add ./ct/*.app git commit -m "Update .app files" + # Create a temporary branch for the PR git checkout -b pr-update-app-files git push origin pr-update-app-files --force @@ -65,6 +72,12 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # Step 7: Output success message when no changes + - name: No changes detected + if: steps.verify-diff.outputs.changed == 'false' + run: echo "No changes to commit. Workflow completed successfully." + + - name: Re-approve pull request after update if: steps.verify-diff.outputs.changed == 'true' env: From f23da27ba2a0fefbb8e8bf97accd805f0d2481fb Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:11:39 +0100 Subject: [PATCH 23/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 3d01ec45..79a92c7e 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -25,7 +25,7 @@ jobs: - name: Set up Git run: | git config --global user.name "GitHub Actions" - git config --global user.email "actions@github.com" + git config --global user.email "github-actions[bot]@users.noreply.github.com" # Step 3: Install figlet - name: Install figlet @@ -55,17 +55,13 @@ jobs: - name: Commit and create PR if changes exist if: steps.verify-diff.outputs.changed == 'true' run: | - git config --global user.name "github-actions[bot]" - git config --global user.email "github-actions[bot]@users.noreply.github.com" - git add ./ct/*.app + git add -A git commit -m "Update .app files" - # Create a temporary branch for the PR git checkout -b pr-update-app-files git push origin pr-update-app-files --force - # Create PR against main gh pr create --title "[core] update .app files" \ - --body "This PR is auto-generated by a Github Action to update the .app files." \ + --body "This PR is auto-generated by a GitHub Action to update the .app files." \ --head pr-update-app-files \ --base main \ --label "automated pr" @@ -77,21 +73,15 @@ jobs: if: steps.verify-diff.outputs.changed == 'false' run: echo "No changes to commit. Workflow completed successfully." - + # Step 8: Re-approve pull request after update - name: Re-approve pull request after update if: steps.verify-diff.outputs.changed == 'true' env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - # Get the PR number for the current branch PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') - - # Check if a PR number was retrieved if [ -n "$PR_NUMBER" ]; then - # Get the PR author PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') - - # Approve the PR if it was not created by the bot if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then gh pr review "$PR_NUMBER" --approve else From d852e7b09832030d53fae6f10914632dcc1fbfa2 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:13:05 +0100 Subject: [PATCH 24/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 79a92c7e..5d67131c 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -80,13 +80,20 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') + if [ -n "$PR_NUMBER" ]; then PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') + + # Skip approval if the PR was created by the bot if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then gh pr review "$PR_NUMBER" --approve else - echo "PR was created by the bot, skipping review." + echo "Skipping approval: PR was created by the bot." fi else echo "No PR found for the current branch." fi + + else + echo "No PR found for the current branch." + fi From 3d99b49a9956dc5ad31fc2825450d1a19905d6cc Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:14:45 +0100 Subject: [PATCH 25/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 25 ------------------- 1 file changed, 25 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 5d67131c..501c4343 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -72,28 +72,3 @@ jobs: - name: No changes detected if: steps.verify-diff.outputs.changed == 'false' run: echo "No changes to commit. Workflow completed successfully." - - # Step 8: Re-approve pull request after update - - name: Re-approve pull request after update - if: steps.verify-diff.outputs.changed == 'true' - env: - GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') - - if [ -n "$PR_NUMBER" ]; then - PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login') - - # Skip approval if the PR was created by the bot - if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then - gh pr review "$PR_NUMBER" --approve - else - echo "Skipping approval: PR was created by the bot." - fi - else - echo "No PR found for the current branch." - fi - - else - echo "No PR found for the current branch." - fi From 5415bfd21af1104e00eed042cb5189f6ce3b4795 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:16:47 +0100 Subject: [PATCH 26/36] Update generate-app-headers.sh --- .github/workflows/scripts/generate-app-headers.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scripts/generate-app-headers.sh b/.github/workflows/scripts/generate-app-headers.sh index 4d92951f..e0811495 100644 --- a/.github/workflows/scripts/generate-app-headers.sh +++ b/.github/workflows/scripts/generate-app-headers.sh @@ -14,9 +14,13 @@ find ./ct -type f -name "*.sh" | sort | while read -r script; do # Generate figlet output figlet_output=$(figlet -f slant "$app_name") - # Write the figlet output to the file - echo "$figlet_output" > "$output_file" - echo "Generated: $output_file" + # Check if figlet output is not empty + if [[ -n "$figlet_output" ]]; then + echo "$figlet_output" > "$output_file" + echo "Generated: $output_file" + else + echo "Figlet failed for $app_name in $script" + fi else echo "Skipped: $output_file already exists" fi From 0313de615a1a2690d387074a5778238047f84a2f Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:18:39 +0100 Subject: [PATCH 27/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 501c4343..44ddcb02 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -17,21 +17,25 @@ jobs: pull-requests: write steps: - # Step 1: Checkout repository + # Step 1: Checkout repository - name: Checkout repository uses: actions/checkout@v2 - # Step 2: Set up Git user for committing changes + # Step 2: Disable file mode changes detection + - name: Disable file mode changes + run: git config core.fileMode false + + # Step 3: Set up Git user for committing changes - name: Set up Git run: | git config --global user.name "GitHub Actions" git config --global user.email "github-actions[bot]@users.noreply.github.com" - # Step 3: Install figlet + # Step 4: Install figlet - name: Install figlet run: sudo apt-get install -y figlet - # Step 4: Run the updated generate-app-files.sh script + # Step 5: Run the updated generate-app-files.sh script - name: Run generate-app-files.sh run: | chmod +x .github/workflows/scripts/generate-app-headers.sh @@ -39,7 +43,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # Step 5: Check if there are any changes + # Step 6: Check if there are any changes - name: Check if there are any changes id: verify-diff run: | @@ -51,7 +55,7 @@ jobs: echo "changed=true" >> $GITHUB_OUTPUT fi - # Step 6: Commit changes (if any) and create a PR + # Step 7: Commit changes (if any) and create a PR - name: Commit and create PR if changes exist if: steps.verify-diff.outputs.changed == 'true' run: | @@ -68,7 +72,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # Step 7: Output success message when no changes + # Step 8: Output success message when no changes - name: No changes detected if: steps.verify-diff.outputs.changed == 'false' run: echo "No changes to commit. Workflow completed successfully." From 4e8317d30c91a30275ba59612c0d9df92ef0e543 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:24:01 +0100 Subject: [PATCH 28/36] Update .app files (#1725) Co-authored-by: GitHub Actions --- .github/workflows/scripts/generate-app-headers.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .github/workflows/scripts/generate-app-headers.sh diff --git a/.github/workflows/scripts/generate-app-headers.sh b/.github/workflows/scripts/generate-app-headers.sh old mode 100644 new mode 100755 From 17745c344b8397d29a595f44b66c1ff2f5f20812 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:30:18 +0100 Subject: [PATCH 29/36] Update actualbudget.sh --- ct/actualbudget.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/actualbudget.sh b/ct/actualbudget.sh index 46aad3c2..2680b56a 100644 --- a/ct/actualbudget.sh +++ b/ct/actualbudget.sh @@ -43,10 +43,10 @@ function update_script() { msg_info "Updating ${APP} to ${RELEASE}" cd /tmp wget -q https://github.com/actualbudget/actual-server/archive/refs/tags/v${RELEASE}.tar.gz - tar -xzf v${RELEASE}.tar.gz >/dev/null 2>&1 mv /opt/actualbudget /opt/actualbudget_bak mkdir -p /opt/actualbudget/ - mv *ctual-server-* /opt/actualbudget + tar -xzf v${RELEASE}.tar.gz >/dev/null 2>&1 + mv *ctual-server-*/* /opt/actualbudget mv /opt/actualbudget_bak/.env /opt/actualbudget mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files cd /opt/actualbudget From 75f90409ebf34e213a10a29bbdcf739c1d868b0c Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:41:03 +0100 Subject: [PATCH 30/36] Update actualbudget-install.sh --- install/actualbudget-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install/actualbudget-install.sh b/install/actualbudget-install.sh index c4e203d4..b6068c2c 100644 --- a/install/actualbudget-install.sh +++ b/install/actualbudget-install.sh @@ -18,6 +18,7 @@ $STD apt-get install -y \ curl \ sudo \ mc \ + tini \ gpg \ build-essential msg_ok "Installed Dependencies" From dbb138317dcae0de97c9a24613c813c7df9d8838 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:45:32 +0100 Subject: [PATCH 31/36] remove headers for testing --- ct/2fauth.app | 6 ------ ct/5etools.app | 6 ------ ct/actualbudget.app | 6 ------ ct/adguard.app | 6 ------ ct/adventurelog.app | 6 ------ ct/agentdvr.app | 6 ------ ct/alpine-docker.app | 6 ------ ct/alpine-grafana.app | 6 ------ ct/alpine-nextcloud.app | 12 ------------ ct/alpine-vaultwarden.app | 12 ------------ ct/alpine-zigbee2mqtt.app | 12 ------------ ct/alpine.app | 6 ------ ct/apache-cassandra.app | 12 ------------ ct/apache-couchdb.app | 12 ------------ ct/apache-guacamole.app | 12 ------------ ct/apt-cacher-ng.app | 6 ------ ct/archivebox.app | 6 ------ ct/aria2.app | 6 ------ ct/audiobookshelf.app | 6 ------ ct/authentik.app | 6 ------ ct/autobrr.app | 6 ------ ct/bazarr.app | 6 ------ ct/beszel.app | 6 ------ ct/blocky.app | 6 ------ ct/bookstack.app | 6 ------ ct/bunkerweb.app | 6 ------ ct/caddy.app | 6 ------ ct/calibre-web.app | 6 ------ ct/casaos.app | 6 ------ ct/changedetection.app | 12 ------------ ct/channels.app | 6 ------ ct/checkmk.app | 6 ------ ct/cloudflared.app | 6 ------ ct/cockpit.app | 6 ------ ct/commafeed.app | 6 ------ ct/cronicle.app | 6 ------ ct/daemonsync.app | 6 ------ ct/dashy.app | 6 ------ ct/debian.app | 6 ------ ct/deconz.app | 6 ------ ct/deluge.app | 6 ------ ct/docker.app | 6 ------ ct/dockge.app | 6 ------ ct/dotnetaspwebapi.app | 12 ------------ ct/emby.app | 6 ------ ct/emqx.app | 6 ------ ct/ersatztv.app | 6 ------ ct/esphome.app | 6 ------ ct/evcc.app | 6 ------ ct/fenrus.app | 6 ------ ct/fhem.app | 6 ------ ct/firefly.app | 6 ------ ct/flaresolverr.app | 6 ------ ct/flowiseai.app | 6 ------ ct/forgejo.app | 6 ------ ct/frigate.app | 6 ------ ct/ghost.app | 6 ------ ct/gitea.app | 6 ------ ct/glance.app | 6 ------ ct/glpi.app | 6 ------ ct/go2rtc.app | 6 ------ ct/gokapi.app | 6 ------ ct/gotify.app | 6 ------ ct/grafana.app | 6 ------ ct/grist.app | 6 ------ ct/grocy.app | 6 ------ ct/headscale.app | 6 ------ ct/heimdall-dashboard.app | 12 ------------ ct/hivemq.app | 6 ------ ct/hoarder.app | 6 ------ ct/homarr.app | 6 ------ ct/homeassistant-core.app | 12 ------------ ct/homeassistant.app | 6 ------ ct/homebox.app | 6 ------ ct/homebridge.app | 6 ------ ct/homepage.app | 6 ------ ct/homer.app | 6 ------ ct/hyperhdr.app | 6 ------ ct/hyperion.app | 6 ------ ct/influxdb.app | 6 ------ ct/inspircd.app | 6 ------ ct/iobroker.app | 6 ------ ct/iventoy.app | 6 ------ ct/jackett.app | 6 ------ ct/jellyfin.app | 6 ------ ct/jellyseerr.app | 6 ------ ct/jenkins.app | 6 ------ ct/kavita.app | 6 ------ ct/keycloak.app | 6 ------ ct/kimai.app | 6 ------ ct/komga.app | 6 ------ ct/komodo.app | 6 ------ ct/kubo.app | 6 ------ ct/lazylibrarian.app | 6 ------ ct/lidarr.app | 6 ------ ct/linkwarden.app | 6 ------ ct/listmonk.app | 6 ------ ct/lldap.app | 6 ------ ct/lubelogger.app | 6 ------ ct/mafl.app | 6 ------ ct/magicmirror.app | 6 ------ ct/mariadb.app | 6 ------ ct/matterbridge.app | 6 ------ ct/mediamtx.app | 6 ------ ct/medusa.app | 6 ------ ct/memos.app | 6 ------ ct/meshcentral.app | 6 ------ ct/metube.app | 6 ------ ct/mongodb.app | 6 ------ ct/motioneye.app | 6 ------ ct/mqtt.app | 6 ------ ct/mylar3.app | 6 ------ ct/myspeed.app | 6 ------ ct/mysql.app | 6 ------ ct/n8n.app | 6 ------ ct/navidrome.app | 6 ------ ct/neo4j.app | 6 ------ ct/netbox.app | 6 ------ ct/nextcloudpi.app | 6 ------ ct/nextpvr.app | 6 ------ ct/nginxproxymanager.app | 12 ------------ ct/nocodb.app | 6 ------ ct/node-red.app | 6 ------ ct/notifiarr.app | 6 ------ ct/ntfy.app | 6 ------ ct/nzbget.app | 6 ------ ct/octoprint.app | 6 ------ ct/ollama.app | 6 ------ ct/omada.app | 6 ------ ct/ombi.app | 6 ------ ct/omv.app | 6 ------ ct/onedev.app | 6 ------ ct/opengist.app | 6 ------ ct/openhab.app | 6 ------ ct/openobserve.app | 6 ------ ct/openwebui.app | 6 ------ ct/overseerr.app | 6 ------ ct/owncast.app | 6 ------ ct/pairdrop.app | 6 ------ ct/paperless-ngx.app | 6 ------ ct/part-db.app | 6 ------ ct/pbs.app | 6 ------ ct/peanut.app | 6 ------ ct/petio.app | 6 ------ ct/pf2etools.app | 6 ------ ct/photoprism.app | 6 ------ ct/phpipam.app | 6 ------ ct/pialert.app | 6 ------ ct/pihole.app | 6 ------ ct/pingvin.app | 6 ------ ct/plex.app | 6 ------ ct/pocketbase.app | 6 ------ ct/podman-homeassistant.app | 12 ------------ ct/podman.app | 6 ------ ct/postgresql.app | 6 ------ ct/projectsend.app | 6 ------ ct/prometheus-alertmanager.app | 12 ------------ ct/prometheus.app | 6 ------ ct/prowlarr.app | 6 ------ ct/proxmox-datacenter-manager.app | 18 ------------------ ct/ps5-mqtt.app | 6 ------ ct/qbittorrent.app | 6 ------ ct/rabbitmq.app | 6 ------ ct/radarr.app | 6 ------ ct/rdtclient.app | 6 ------ ct/readarr.app | 6 ------ ct/readeck.app | 6 ------ ct/recyclarr.app | 6 ------ ct/redis.app | 6 ------ ct/rtsptoweb.app | 6 ------ ct/runtipi.app | 6 ------ ct/sabnzbd.app | 6 ------ ct/semaphore.app | 6 ------ ct/sftpgo.app | 6 ------ ct/shinobi.app | 6 ------ ct/silverbullet.app | 6 ------ ct/smokeping.app | 6 ------ ct/snipeit.app | 6 ------ ct/sonarr.app | 6 ------ ct/spoolman.app | 6 ------ ct/sqlserver2022.app | 12 ------------ ct/stirling-pdf.app | 6 ------ ct/syncthing.app | 6 ------ ct/tandoor.app | 6 ------ ct/tasmoadmin.app | 6 ------ ct/tautulli.app | 6 ------ ct/tdarr.app | 6 ------ ct/technitiumdns.app | 6 ------ ct/teddycloud.app | 6 ------ ct/the-lounge.app | 6 ------ ct/threadfin.app | 6 ------ ct/tianji.app | 6 ------ ct/traccar.app | 6 ------ ct/traefik.app | 6 ------ ct/transmission.app | 6 ------ ct/trilium.app | 6 ------ ct/typesense.app | 6 ------ ct/ubuntu.app | 6 ------ ct/umami.app | 6 ------ ct/umbrel.app | 6 ------ ct/unbound.app | 6 ------ ct/unifi.app | 6 ------ ct/unmanic.app | 6 ------ ct/uptimekuma.app | 6 ------ ct/urbackupserver.app | 12 ------------ ct/vaultwarden.app | 6 ------ ct/vikunja.app | 6 ------ ct/wallos.app | 6 ------ ct/wastebin.app | 6 ------ ct/watchyourlan.app | 6 ------ ct/wavelog.app | 6 ------ ct/whisparr.app | 6 ------ ct/whoogle.app | 6 ------ ct/wikijs.app | 6 ------ ct/wireguard.app | 6 ------ ct/wordpress.app | 6 ------ ct/yunohost.app | 6 ------ ct/zabbix.app | 6 ------ ct/zammad.app | 6 ------ ct/zigbee2mqtt.app | 6 ------ ct/zipline.app | 6 ------ ct/zoraxy.app | 6 ------ ct/zwave-js-ui.app | 6 ------ 223 files changed, 1440 deletions(-) delete mode 100644 ct/2fauth.app delete mode 100644 ct/5etools.app delete mode 100644 ct/actualbudget.app delete mode 100644 ct/adguard.app delete mode 100644 ct/adventurelog.app delete mode 100644 ct/agentdvr.app delete mode 100644 ct/alpine-docker.app delete mode 100644 ct/alpine-grafana.app delete mode 100644 ct/alpine-nextcloud.app delete mode 100644 ct/alpine-vaultwarden.app delete mode 100644 ct/alpine-zigbee2mqtt.app delete mode 100644 ct/alpine.app delete mode 100644 ct/apache-cassandra.app delete mode 100644 ct/apache-couchdb.app delete mode 100644 ct/apache-guacamole.app delete mode 100644 ct/apt-cacher-ng.app delete mode 100644 ct/archivebox.app delete mode 100644 ct/aria2.app delete mode 100644 ct/audiobookshelf.app delete mode 100644 ct/authentik.app delete mode 100644 ct/autobrr.app delete mode 100644 ct/bazarr.app delete mode 100644 ct/beszel.app delete mode 100644 ct/blocky.app delete mode 100644 ct/bookstack.app delete mode 100644 ct/bunkerweb.app delete mode 100644 ct/caddy.app delete mode 100644 ct/calibre-web.app delete mode 100644 ct/casaos.app delete mode 100644 ct/changedetection.app delete mode 100644 ct/channels.app delete mode 100644 ct/checkmk.app delete mode 100644 ct/cloudflared.app delete mode 100644 ct/cockpit.app delete mode 100644 ct/commafeed.app delete mode 100644 ct/cronicle.app delete mode 100644 ct/daemonsync.app delete mode 100644 ct/dashy.app delete mode 100644 ct/debian.app delete mode 100644 ct/deconz.app delete mode 100644 ct/deluge.app delete mode 100644 ct/docker.app delete mode 100644 ct/dockge.app delete mode 100644 ct/dotnetaspwebapi.app delete mode 100644 ct/emby.app delete mode 100644 ct/emqx.app delete mode 100644 ct/ersatztv.app delete mode 100644 ct/esphome.app delete mode 100644 ct/evcc.app delete mode 100644 ct/fenrus.app delete mode 100644 ct/fhem.app delete mode 100644 ct/firefly.app delete mode 100644 ct/flaresolverr.app delete mode 100644 ct/flowiseai.app delete mode 100644 ct/forgejo.app delete mode 100644 ct/frigate.app delete mode 100644 ct/ghost.app delete mode 100644 ct/gitea.app delete mode 100644 ct/glance.app delete mode 100644 ct/glpi.app delete mode 100644 ct/go2rtc.app delete mode 100644 ct/gokapi.app delete mode 100644 ct/gotify.app delete mode 100644 ct/grafana.app delete mode 100644 ct/grist.app delete mode 100644 ct/grocy.app delete mode 100644 ct/headscale.app delete mode 100644 ct/heimdall-dashboard.app delete mode 100644 ct/hivemq.app delete mode 100644 ct/hoarder.app delete mode 100644 ct/homarr.app delete mode 100644 ct/homeassistant-core.app delete mode 100644 ct/homeassistant.app delete mode 100644 ct/homebox.app delete mode 100644 ct/homebridge.app delete mode 100644 ct/homepage.app delete mode 100644 ct/homer.app delete mode 100644 ct/hyperhdr.app delete mode 100644 ct/hyperion.app delete mode 100644 ct/influxdb.app delete mode 100644 ct/inspircd.app delete mode 100644 ct/iobroker.app delete mode 100644 ct/iventoy.app delete mode 100644 ct/jackett.app delete mode 100644 ct/jellyfin.app delete mode 100644 ct/jellyseerr.app delete mode 100644 ct/jenkins.app delete mode 100644 ct/kavita.app delete mode 100644 ct/keycloak.app delete mode 100644 ct/kimai.app delete mode 100644 ct/komga.app delete mode 100644 ct/komodo.app delete mode 100644 ct/kubo.app delete mode 100644 ct/lazylibrarian.app delete mode 100644 ct/lidarr.app delete mode 100644 ct/linkwarden.app delete mode 100644 ct/listmonk.app delete mode 100644 ct/lldap.app delete mode 100644 ct/lubelogger.app delete mode 100644 ct/mafl.app delete mode 100644 ct/magicmirror.app delete mode 100644 ct/mariadb.app delete mode 100644 ct/matterbridge.app delete mode 100644 ct/mediamtx.app delete mode 100644 ct/medusa.app delete mode 100644 ct/memos.app delete mode 100644 ct/meshcentral.app delete mode 100644 ct/metube.app delete mode 100644 ct/mongodb.app delete mode 100644 ct/motioneye.app delete mode 100644 ct/mqtt.app delete mode 100644 ct/mylar3.app delete mode 100644 ct/myspeed.app delete mode 100644 ct/mysql.app delete mode 100644 ct/n8n.app delete mode 100644 ct/navidrome.app delete mode 100644 ct/neo4j.app delete mode 100644 ct/netbox.app delete mode 100644 ct/nextcloudpi.app delete mode 100644 ct/nextpvr.app delete mode 100644 ct/nginxproxymanager.app delete mode 100644 ct/nocodb.app delete mode 100644 ct/node-red.app delete mode 100644 ct/notifiarr.app delete mode 100644 ct/ntfy.app delete mode 100644 ct/nzbget.app delete mode 100644 ct/octoprint.app delete mode 100644 ct/ollama.app delete mode 100644 ct/omada.app delete mode 100644 ct/ombi.app delete mode 100644 ct/omv.app delete mode 100644 ct/onedev.app delete mode 100644 ct/opengist.app delete mode 100644 ct/openhab.app delete mode 100644 ct/openobserve.app delete mode 100644 ct/openwebui.app delete mode 100644 ct/overseerr.app delete mode 100644 ct/owncast.app delete mode 100644 ct/pairdrop.app delete mode 100644 ct/paperless-ngx.app delete mode 100644 ct/part-db.app delete mode 100644 ct/pbs.app delete mode 100644 ct/peanut.app delete mode 100644 ct/petio.app delete mode 100644 ct/pf2etools.app delete mode 100644 ct/photoprism.app delete mode 100644 ct/phpipam.app delete mode 100644 ct/pialert.app delete mode 100644 ct/pihole.app delete mode 100644 ct/pingvin.app delete mode 100644 ct/plex.app delete mode 100644 ct/pocketbase.app delete mode 100644 ct/podman-homeassistant.app delete mode 100644 ct/podman.app delete mode 100644 ct/postgresql.app delete mode 100644 ct/projectsend.app delete mode 100644 ct/prometheus-alertmanager.app delete mode 100644 ct/prometheus.app delete mode 100644 ct/prowlarr.app delete mode 100644 ct/proxmox-datacenter-manager.app delete mode 100644 ct/ps5-mqtt.app delete mode 100644 ct/qbittorrent.app delete mode 100644 ct/rabbitmq.app delete mode 100644 ct/radarr.app delete mode 100644 ct/rdtclient.app delete mode 100644 ct/readarr.app delete mode 100644 ct/readeck.app delete mode 100644 ct/recyclarr.app delete mode 100644 ct/redis.app delete mode 100644 ct/rtsptoweb.app delete mode 100644 ct/runtipi.app delete mode 100644 ct/sabnzbd.app delete mode 100644 ct/semaphore.app delete mode 100644 ct/sftpgo.app delete mode 100644 ct/shinobi.app delete mode 100644 ct/silverbullet.app delete mode 100644 ct/smokeping.app delete mode 100644 ct/snipeit.app delete mode 100644 ct/sonarr.app delete mode 100644 ct/spoolman.app delete mode 100644 ct/sqlserver2022.app delete mode 100644 ct/stirling-pdf.app delete mode 100644 ct/syncthing.app delete mode 100644 ct/tandoor.app delete mode 100644 ct/tasmoadmin.app delete mode 100644 ct/tautulli.app delete mode 100644 ct/tdarr.app delete mode 100644 ct/technitiumdns.app delete mode 100644 ct/teddycloud.app delete mode 100644 ct/the-lounge.app delete mode 100644 ct/threadfin.app delete mode 100644 ct/tianji.app delete mode 100644 ct/traccar.app delete mode 100644 ct/traefik.app delete mode 100644 ct/transmission.app delete mode 100644 ct/trilium.app delete mode 100644 ct/typesense.app delete mode 100644 ct/ubuntu.app delete mode 100644 ct/umami.app delete mode 100644 ct/umbrel.app delete mode 100644 ct/unbound.app delete mode 100644 ct/unifi.app delete mode 100644 ct/unmanic.app delete mode 100644 ct/uptimekuma.app delete mode 100644 ct/urbackupserver.app delete mode 100644 ct/vaultwarden.app delete mode 100644 ct/vikunja.app delete mode 100644 ct/wallos.app delete mode 100644 ct/wastebin.app delete mode 100644 ct/watchyourlan.app delete mode 100644 ct/wavelog.app delete mode 100644 ct/whisparr.app delete mode 100644 ct/whoogle.app delete mode 100644 ct/wikijs.app delete mode 100644 ct/wireguard.app delete mode 100644 ct/wordpress.app delete mode 100644 ct/yunohost.app delete mode 100644 ct/zabbix.app delete mode 100644 ct/zammad.app delete mode 100644 ct/zigbee2mqtt.app delete mode 100644 ct/zipline.app delete mode 100644 ct/zoraxy.app delete mode 100644 ct/zwave-js-ui.app diff --git a/ct/2fauth.app b/ct/2fauth.app deleted file mode 100644 index b6421719..00000000 --- a/ct/2fauth.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ _________ __ __ - |__ \ / ____/ | __ __/ /_/ /_ - __/ // /_ / /| |/ / / / __/ __ \ - / __// __/ / ___ / /_/ / /_/ / / / -/____/_/ /_/ |_\__,_/\__/_/ /_/ - diff --git a/ct/5etools.app b/ct/5etools.app deleted file mode 100644 index 1556067f..00000000 --- a/ct/5etools.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ __ - / ____/__ / /_____ ____ / /____ - /___ \/ _ \/ __/ __ \/ __ \/ / ___/ - ____/ / __/ /_/ /_/ / /_/ / (__ ) -/_____/\___/\__/\____/\____/_/____/ - diff --git a/ct/actualbudget.app b/ct/actualbudget.app deleted file mode 100644 index db7f3093..00000000 --- a/ct/actualbudget.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ ____ __ __ - / | _____/ /___ ______ _/ / / __ )__ ______/ /___ ____ / /_ - / /| |/ ___/ __/ / / / __ `/ / / __ / / / / __ / __ `/ _ \/ __/ - / ___ / /__/ /_/ /_/ / /_/ / / / /_/ / /_/ / /_/ / /_/ / __/ /_ -/_/ |_\___/\__/\__,_/\__,_/_/ /_____/\__,_/\__,_/\__, /\___/\__/ - /____/ diff --git a/ct/adguard.app b/ct/adguard.app deleted file mode 100644 index 2332df17..00000000 --- a/ct/adguard.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ - / | ____/ /___ ___ ______ __________/ / - / /| |/ __ / __ `/ / / / __ `/ ___/ __ / - / ___ / /_/ / /_/ / /_/ / /_/ / / / /_/ / -/_/ |_\__,_/\__, /\__,_/\__,_/_/ \__,_/ - /____/ diff --git a/ct/adventurelog.app b/ct/adventurelog.app deleted file mode 100644 index 8e3c88d1..00000000 --- a/ct/adventurelog.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ __ - / | ____/ / _____ ____ / /___ __________ / / ____ ____ _ - / /| |/ __ / | / / _ \/ __ \/ __/ / / / ___/ _ \/ / / __ \/ __ `/ - / ___ / /_/ /| |/ / __/ / / / /_/ /_/ / / / __/ /___/ /_/ / /_/ / -/_/ |_\__,_/ |___/\___/_/ /_/\__/\__,_/_/ \___/_____/\____/\__, / - /____/ diff --git a/ct/agentdvr.app b/ct/agentdvr.app deleted file mode 100644 index dfe67792..00000000 --- a/ct/agentdvr.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ ____ _ ______ - / | ____ ____ ____ / /_/ __ \ | / / __ \ - / /| |/ __ `/ _ \/ __ \/ __/ / / / | / / /_/ / - / ___ / /_/ / __/ / / / /_/ /_/ /| |/ / _, _/ -/_/ |_\__, /\___/_/ /_/\__/_____/ |___/_/ |_| - /____/ diff --git a/ct/alpine-docker.app b/ct/alpine-docker.app deleted file mode 100644 index 7fd1b265..00000000 --- a/ct/alpine-docker.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ _ ____ __ - / | / /___ (_)___ ___ / __ \____ _____/ /_____ _____ - / /| | / / __ \/ / __ \/ _ \______/ / / / __ \/ ___/ //_/ _ \/ ___/ - / ___ |/ / /_/ / / / / / __/_____/ /_/ / /_/ / /__/ ,< / __/ / -/_/ |_/_/ .___/_/_/ /_/\___/ /_____/\____/\___/_/|_|\___/_/ - /_/ diff --git a/ct/alpine-grafana.app b/ct/alpine-grafana.app deleted file mode 100644 index 3fe493c9..00000000 --- a/ct/alpine-grafana.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ _ ______ ____ - / | / /___ (_)___ ___ / ____/________ _/ __/___ _____ ____ _ - / /| | / / __ \/ / __ \/ _ \______/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/ - / ___ |/ / /_/ / / / / / __/_____/ /_/ / / / /_/ / __/ /_/ / / / / /_/ / -/_/ |_/_/ .___/_/_/ /_/\___/ \____/_/ \__,_/_/ \__,_/_/ /_/\__,_/ - /_/ diff --git a/ct/alpine-nextcloud.app b/ct/alpine-nextcloud.app deleted file mode 100644 index b27eb0ca..00000000 --- a/ct/alpine-nextcloud.app +++ /dev/null @@ -1,12 +0,0 @@ - ___ __ _ _ __ __ __ - / | / /___ (_)___ ___ / | / /__ _ __/ /______/ /___ __ __ - / /| | / / __ \/ / __ \/ _ \______/ |/ / _ \| |/_/ __/ ___/ / __ \/ / / / - / ___ |/ / /_/ / / / / / __/_____/ /| / __/> < -/_/ |_/_/ \___/_/ /_/_/ |___/\___/_____/\____/_/|_| - diff --git a/ct/aria2.app b/ct/aria2.app deleted file mode 100644 index 3080e17b..00000000 --- a/ct/aria2.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ _ ___ - / | _____(_)___ |__ \ - / /| | / ___/ / __ `/_/ / - / ___ |/ / / / /_/ / __/ -/_/ |_/_/ /_/\__,_/____/ - diff --git a/ct/audiobookshelf.app b/ct/audiobookshelf.app deleted file mode 100644 index 5e249a85..00000000 --- a/ct/audiobookshelf.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ __ ______ - ____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/ - / __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_ -/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/ -\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/ - diff --git a/ct/authentik.app b/ct/authentik.app deleted file mode 100644 index f609964e..00000000 --- a/ct/authentik.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ __ _ __ - / | __ __/ /_/ /_ ___ ____ / /_(_) /__ - / /| |/ / / / __/ __ \/ _ \/ __ \/ __/ / //_/ - / ___ / /_/ / /_/ / / / __/ / / / /_/ / ,< -/_/ |_\__,_/\__/_/ /_/\___/_/ /_/\__/_/_/|_| - diff --git a/ct/autobrr.app b/ct/autobrr.app deleted file mode 100644 index 56322d59..00000000 --- a/ct/autobrr.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ __ - / | __ __/ /_____ / /_ __________ - / /| |/ / / / __/ __ \/ __ \/ ___/ ___/ - / ___ / /_/ / /_/ /_/ / /_/ / / / / -/_/ |_\__,_/\__/\____/_.___/_/ /_/ - diff --git a/ct/bazarr.app b/ct/bazarr.app deleted file mode 100644 index e487a77d..00000000 --- a/ct/bazarr.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ - / __ )____ _____ ____ ___________ - / __ / __ `/_ / / __ `/ ___/ ___/ - / /_/ / /_/ / / /_/ /_/ / / / / -/_____/\__,_/ /___/\__,_/_/ /_/ - diff --git a/ct/beszel.app b/ct/beszel.app deleted file mode 100644 index dcb0d38d..00000000 --- a/ct/beszel.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ )___ _________ ___ / / - / __ / _ \/ ___/_ / / _ \/ / - / /_/ / __(__ ) / /_/ __/ / -/_____/\___/____/ /___/\___/_/ - diff --git a/ct/blocky.app b/ct/blocky.app deleted file mode 100644 index 3bd089ba..00000000 --- a/ct/blocky.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ - / __ )/ /___ _____/ /____ __ - / __ / / __ \/ ___/ //_/ / / / - / /_/ / / /_/ / /__/ ,< / /_/ / -/_____/_/\____/\___/_/|_|\__, / - /____/ diff --git a/ct/bookstack.app b/ct/bookstack.app deleted file mode 100644 index f6864666..00000000 --- a/ct/bookstack.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ __ - / __ )____ ____ / /_______/ /_____ ______/ /__ - / __ / __ \/ __ \/ //_/ ___/ __/ __ `/ ___/ //_/ - / /_/ / /_/ / /_/ / ,< (__ ) /_/ /_/ / /__/ ,< -/_____/\____/\____/_/|_/____/\__/\__,_/\___/_/|_| - diff --git a/ct/bunkerweb.app b/ct/bunkerweb.app deleted file mode 100644 index 188677c4..00000000 --- a/ct/bunkerweb.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ _ __ __ - / __ )__ ______ / /_____ ____| | / /__ / /_ - / __ / / / / __ \/ //_/ _ \/ ___/ | /| / / _ \/ __ \ - / /_/ / /_/ / / / / ,< / __/ / | |/ |/ / __/ /_/ / -/_____/\__,_/_/ /_/_/|_|\___/_/ |__/|__/\___/_.___/ - diff --git a/ct/caddy.app b/ct/caddy.app deleted file mode 100644 index 6f47f962..00000000 --- a/ct/caddy.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ __ - / ____/___ _____/ /___/ /_ __ - / / / __ `/ __ / __ / / / / -/ /___/ /_/ / /_/ / /_/ / /_/ / -\____/\__,_/\__,_/\__,_/\__, / - /____/ diff --git a/ct/calibre-web.app b/ct/calibre-web.app deleted file mode 100644 index ae9dc037..00000000 --- a/ct/calibre-web.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ ___ __ _ __ __ - / ____/___ _/ (_) /_ ________ | | / /__ / /_ - / / / __ `/ / / __ \/ ___/ _ \_____| | /| / / _ \/ __ \ -/ /___/ /_/ / / / /_/ / / / __/_____/ |/ |/ / __/ /_/ / -\____/\__,_/_/_/_.___/_/ \___/ |__/|__/\___/_.___/ - diff --git a/ct/casaos.app b/ct/casaos.app deleted file mode 100644 index 4af563a2..00000000 --- a/ct/casaos.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ ____ _____ - / ____/___ __________ _/ __ \/ ___/ - / / / __ `/ ___/ __ `/ / / /\__ \ -/ /___/ /_/ (__ ) /_/ / /_/ /___/ / -\____/\__,_/____/\__,_/\____//____/ - diff --git a/ct/changedetection.app b/ct/changedetection.app deleted file mode 100644 index bf9fefb4..00000000 --- a/ct/changedetection.app +++ /dev/null @@ -1,12 +0,0 @@ - ________ - / ____/ /_ ____ _____ ____ ____ - / / / __ \/ __ `/ __ \/ __ `/ _ \ -/ /___/ / / / /_/ / / / / /_/ / __/ -\____/_/ /_/\__,_/_/ /_/\__, /\___/ - /____/ - ____ __ __ _ - / __ \___ / /____ _____/ /_(_)___ ____ - / / / / _ \/ __/ _ \/ ___/ __/ / __ \/ __ \ - / /_/ / __/ /_/ __/ /__/ /_/ / /_/ / / / / -/_____/\___/\__/\___/\___/\__/_/\____/_/ /_/ - diff --git a/ct/channels.app b/ct/channels.app deleted file mode 100644 index 7600b6e4..00000000 --- a/ct/channels.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ __ - / ____/ /_ ____ _____ ____ ___ / /____ - / / / __ \/ __ `/ __ \/ __ \/ _ \/ / ___/ -/ /___/ / / / /_/ / / / / / / / __/ (__ ) -\____/_/ /_/\__,_/_/ /_/_/ /_/\___/_/____/ - diff --git a/ct/checkmk.app b/ct/checkmk.app deleted file mode 100644 index ff80000c..00000000 --- a/ct/checkmk.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ __ - _____/ /_ ___ _____/ /______ ___ / /__ - / ___/ __ \/ _ \/ ___/ //_/ __ `__ \/ //_/ -/ /__/ / / / __/ /__/ ,< / / / / / / ,< -\___/_/ /_/\___/\___/_/|_/_/ /_/ /_/_/|_| - diff --git a/ct/cloudflared.app b/ct/cloudflared.app deleted file mode 100644 index 8011c2c2..00000000 --- a/ct/cloudflared.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ ________ __ - / ____/ /___ __ ______/ / __/ /___ _________ ____/ / - / / / / __ \/ / / / __ / /_/ / __ `/ ___/ _ \/ __ / -/ /___/ / /_/ / /_/ / /_/ / __/ / /_/ / / / __/ /_/ / -\____/_/\____/\__,_/\__,_/_/ /_/\__,_/_/ \___/\__,_/ - diff --git a/ct/cockpit.app b/ct/cockpit.app deleted file mode 100644 index 8eb04a26..00000000 --- a/ct/cockpit.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ _ __ - / ____/___ _____/ /______ (_) /_ - / / / __ \/ ___/ //_/ __ \/ / __/ -/ /___/ /_/ / /__/ ,< / /_/ / / /_ -\____/\____/\___/_/|_/ .___/_/\__/ - /_/ diff --git a/ct/commafeed.app b/ct/commafeed.app deleted file mode 100644 index 06beb9a5..00000000 --- a/ct/commafeed.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ ______ __ - / ____/___ ____ ___ ____ ___ ____ _/ ____/__ ___ ____/ / - / / / __ \/ __ `__ \/ __ `__ \/ __ `/ /_ / _ \/ _ \/ __ / -/ /___/ /_/ / / / / / / / / / / / /_/ / __/ / __/ __/ /_/ / -\____/\____/_/ /_/ /_/_/ /_/ /_/\__,_/_/ \___/\___/\__,_/ - diff --git a/ct/cronicle.app b/ct/cronicle.app deleted file mode 100644 index 6d6f7cfc..00000000 --- a/ct/cronicle.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ _ __ - / ____/________ ____ (_)____/ /__ - / / / ___/ __ \/ __ \/ / ___/ / _ \ -/ /___/ / / /_/ / / / / / /__/ / __/ -\____/_/ \____/_/ /_/_/\___/_/\___/ - diff --git a/ct/daemonsync.app b/ct/daemonsync.app deleted file mode 100644 index 53207237..00000000 --- a/ct/daemonsync.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _____ - / __ \____ ____ ____ ___ ____ ____ / ___/__ ______ _____ - / / / / __ `/ _ \/ __ `__ \/ __ \/ __ \ \__ \/ / / / __ \/ ___/ - / /_/ / /_/ / __/ / / / / / /_/ / / / / ___/ / /_/ / / / / /__ -/_____/\__,_/\___/_/ /_/ /_/\____/_/ /_/ /____/\__, /_/ /_/\___/ - /____/ diff --git a/ct/dashy.app b/ct/dashy.app deleted file mode 100644 index 330f9e3d..00000000 --- a/ct/dashy.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \____ ______/ /_ __ __ - / / / / __ `/ ___/ __ \/ / / / - / /_/ / /_/ (__ ) / / / /_/ / -/_____/\__,_/____/_/ /_/\__, / - /____/ diff --git a/ct/debian.app b/ct/debian.app deleted file mode 100644 index a6f474d4..00000000 --- a/ct/debian.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ _ - / __ \___ / /_ (_)___ _____ - / / / / _ \/ __ \/ / __ `/ __ \ - / /_/ / __/ /_/ / / /_/ / / / / -/_____/\___/_.___/_/\__,_/_/ /_/ - diff --git a/ct/deconz.app b/ct/deconz.app deleted file mode 100644 index fcfceb28..00000000 --- a/ct/deconz.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __________ _ _______ - ____/ /__ / ____/ __ \/ | / /__ / - / __ / _ \/ / / / / / |/ / / / -/ /_/ / __/ /___/ /_/ / /| / / /__ -\__,_/\___/\____/\____/_/ |_/ /____/ - diff --git a/ct/deluge.app b/ct/deluge.app deleted file mode 100644 index 6dc49d04..00000000 --- a/ct/deluge.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \___ / /_ ______ ____ - / / / / _ \/ / / / / __ `/ _ \ - / /_/ / __/ / /_/ / /_/ / __/ -/_____/\___/_/\__,_/\__, /\___/ - /____/ diff --git a/ct/docker.app b/ct/docker.app deleted file mode 100644 index 907ffbae..00000000 --- a/ct/docker.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \____ _____/ /_____ _____ - / / / / __ \/ ___/ //_/ _ \/ ___/ - / /_/ / /_/ / /__/ ,< / __/ / -/_____/\____/\___/_/|_|\___/_/ - diff --git a/ct/dockge.app b/ct/dockge.app deleted file mode 100644 index 040b66ac..00000000 --- a/ct/dockge.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \____ _____/ /______ ____ - / / / / __ \/ ___/ //_/ __ `/ _ \ - / /_/ / /_/ / /__/ ,< / /_/ / __/ -/_____/\____/\___/_/|_|\__, /\___/ - /____/ diff --git a/ct/dotnetaspwebapi.app b/ct/dotnetaspwebapi.app deleted file mode 100644 index f00b63ca..00000000 --- a/ct/dotnetaspwebapi.app +++ /dev/null @@ -1,12 +0,0 @@ - ____ __ __ ___ _____ ____ _ __ __ - / __ \____ / /_____ ___ / /_ / | / ___// __ \ | | / /__ / /_ - / / / / __ \/ __/ __ \/ _ \/ __/ / /| | \__ \/ /_/ / | | /| / / _ \/ __ \ - / /_/ / /_/ / /_/ / / / __/ /_ / ___ |___/ / ____/ | |/ |/ / __/ /_/ / -/_____/\____/\__/_/ /_/\___/\__/ /_/ |_/____/_/ |__/|__/\___/_.___/ - - ___ ____ ____ - / | / __ \/ _/ - / /| | / /_/ // / - / ___ |/ ____// / -/_/ |_/_/ /___/ - diff --git a/ct/emby.app b/ct/emby.app deleted file mode 100644 index 84afb1d6..00000000 --- a/ct/emby.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ - / ____/___ ___ / /_ __ __ - / __/ / __ `__ \/ __ \/ / / / - / /___/ / / / / / /_/ / /_/ / -/_____/_/ /_/ /_/_.___/\__, / - /____/ diff --git a/ct/emqx.app b/ct/emqx.app deleted file mode 100644 index f6cb5038..00000000 --- a/ct/emqx.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ _______ _ __ - / ____/ |/ / __ \ | |/ / - / __/ / /|_/ / / / / | / - / /___/ / / / /_/ / / | -/_____/_/ /_/\___\_\/_/|_| - diff --git a/ct/ersatztv.app b/ct/ersatztv.app deleted file mode 100644 index f47317c3..00000000 --- a/ct/ersatztv.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ _______ __ - / ____/_____________ _/ /_____/_ __/ | / / - / __/ / ___/ ___/ __ `/ __/_ / / / | | / / - / /___/ / (__ ) /_/ / /_ / /_/ / | |/ / -/_____/_/ /____/\__,_/\__/ /___/_/ |___/ - diff --git a/ct/esphome.app b/ct/esphome.app deleted file mode 100644 index 5c9e86c6..00000000 --- a/ct/esphome.app +++ /dev/null @@ -1,6 +0,0 @@ - ___________ ____ __ __ - / ____/ ___// __ \/ / / /___ ____ ___ ___ - / __/ \__ \/ /_/ / /_/ / __ \/ __ `__ \/ _ \ - / /___ ___/ / ____/ __ / /_/ / / / / / / __/ -/_____//____/_/ /_/ /_/\____/_/ /_/ /_/\___/ - diff --git a/ct/evcc.app b/ct/evcc.app deleted file mode 100644 index 9317a541..00000000 --- a/ct/evcc.app +++ /dev/null @@ -1,6 +0,0 @@ - - ___ _ ____________ - / _ \ | / / ___/ ___/ -/ __/ |/ / /__/ /__ -\___/|___/\___/\___/ - diff --git a/ct/fenrus.app b/ct/fenrus.app deleted file mode 100644 index 95e073aa..00000000 --- a/ct/fenrus.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ - / ____/__ ____ _______ _______ - / /_ / _ \/ __ \/ ___/ / / / ___/ - / __/ / __/ / / / / / /_/ (__ ) -/_/ \___/_/ /_/_/ \__,_/____/ - diff --git a/ct/fhem.app b/ct/fhem.app deleted file mode 100644 index fe0a80c4..00000000 --- a/ct/fhem.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ __________ ___ - / ____/ / / / ____/ |/ / - / /_ / /_/ / __/ / /|_/ / - / __/ / __ / /___/ / / / -/_/ /_/ /_/_____/_/ /_/ - diff --git a/ct/firefly.app b/ct/firefly.app deleted file mode 100644 index 3aabc10c..00000000 --- a/ct/firefly.app +++ /dev/null @@ -1,6 +0,0 @@ - _______ ______ - / ____(_)_______ / __/ /_ __ - / /_ / / ___/ _ \/ /_/ / / / / - / __/ / / / / __/ __/ / /_/ / -/_/ /_/_/ \___/_/ /_/\__, / - /____/ diff --git a/ct/flaresolverr.app b/ct/flaresolverr.app deleted file mode 100644 index a710dd62..00000000 --- a/ct/flaresolverr.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ _____ __ - / ____/ /___ _________ / ___/____ / / _____ __________ - / /_ / / __ `/ ___/ _ \\__ \/ __ \/ / | / / _ \/ ___/ ___/ - / __/ / / /_/ / / / __/__/ / /_/ / /| |/ / __/ / / / -/_/ /_/\__,_/_/ \___/____/\____/_/ |___/\___/_/ /_/ - diff --git a/ct/flowiseai.app b/ct/flowiseai.app deleted file mode 100644 index 7011f22b..00000000 --- a/ct/flowiseai.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ _ ___ ____ - / ____/ /___ _ __(_)_______ / | / _/ - / /_ / / __ \ | /| / / / ___/ _ \/ /| | / / - / __/ / / /_/ / |/ |/ / (__ ) __/ ___ |_/ / -/_/ /_/\____/|__/|__/_/____/\___/_/ |_/___/ - diff --git a/ct/forgejo.app b/ct/forgejo.app deleted file mode 100644 index 4fb3af69..00000000 --- a/ct/forgejo.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ _ - / ____/___ _________ ____ (_)___ - / /_ / __ \/ ___/ __ `/ _ \ / / __ \ - / __/ / /_/ / / / /_/ / __/ / / /_/ / -/_/ \____/_/ \__, /\___/_/ /\____/ - /____/ /___/ diff --git a/ct/frigate.app b/ct/frigate.app deleted file mode 100644 index 94ffd3a7..00000000 --- a/ct/frigate.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ _ __ - / ____/____(_)___ _____ _/ /____ - / /_ / ___/ / __ `/ __ `/ __/ _ \ - / __/ / / / / /_/ / /_/ / /_/ __/ -/_/ /_/ /_/\__, /\__,_/\__/\___/ - /____/ diff --git a/ct/ghost.app b/ct/ghost.app deleted file mode 100644 index c16e83b8..00000000 --- a/ct/ghost.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ __ - / ____/ /_ ____ _____/ /_ - / / __/ __ \/ __ \/ ___/ __/ -/ /_/ / / / / /_/ (__ ) /_ -\____/_/ /_/\____/____/\__/ - diff --git a/ct/gitea.app b/ct/gitea.app deleted file mode 100644 index 7826ac30..00000000 --- a/ct/gitea.app +++ /dev/null @@ -1,6 +0,0 @@ - _______ __ - / ____(_) /____ ____ _ - / / __/ / __/ _ \/ __ `/ -/ /_/ / / /_/ __/ /_/ / -\____/_/\__/\___/\__,_/ - diff --git a/ct/glance.app b/ct/glance.app deleted file mode 100644 index abaaa8af..00000000 --- a/ct/glance.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ - / ____/ /___ _____ ________ - / / __/ / __ `/ __ \/ ___/ _ \ -/ /_/ / / /_/ / / / / /__/ __/ -\____/_/\__,_/_/ /_/\___/\___/ - diff --git a/ct/glpi.app b/ct/glpi.app deleted file mode 100644 index 789b6259..00000000 --- a/ct/glpi.app +++ /dev/null @@ -1,6 +0,0 @@ - ________ ____ ____ - / ____/ / / __ \/ _/ - / / __/ / / /_/ // / -/ /_/ / /___/ ____// / -\____/_____/_/ /___/ - diff --git a/ct/go2rtc.app b/ct/go2rtc.app deleted file mode 100644 index 3a3e8bf8..00000000 --- a/ct/go2rtc.app +++ /dev/null @@ -1,6 +0,0 @@ - ___ __ - ____ _____ |__ \ _____/ /______ - / __ `/ __ \__/ // ___/ __/ ___/ - / /_/ / /_/ / __// / / /_/ /__ - \__, /\____/____/_/ \__/\___/ -/____/ diff --git a/ct/gokapi.app b/ct/gokapi.app deleted file mode 100644 index c612c9fa..00000000 --- a/ct/gokapi.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ _ - / ____/___ / /______ _____ (_) - / / __/ __ \/ //_/ __ `/ __ \/ / -/ /_/ / /_/ / ,< / /_/ / /_/ / / -\____/\____/_/|_|\__,_/ .___/_/ - /_/ diff --git a/ct/gotify.app b/ct/gotify.app deleted file mode 100644 index 8532f9ef..00000000 --- a/ct/gotify.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ __ _ ____ - / ____/___ / /_(_) __/_ __ - / / __/ __ \/ __/ / /_/ / / / -/ /_/ / /_/ / /_/ / __/ /_/ / -\____/\____/\__/_/_/ \__, / - /____/ diff --git a/ct/grafana.app b/ct/grafana.app deleted file mode 100644 index 9eb8a245..00000000 --- a/ct/grafana.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ ____ - / ____/________ _/ __/___ _____ ____ _ - / / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/ -/ /_/ / / / /_/ / __/ /_/ / / / / /_/ / -\____/_/ \__,_/_/ \__,_/_/ /_/\__,_/ - diff --git a/ct/grist.app b/ct/grist.app deleted file mode 100644 index f82ced4f..00000000 --- a/ct/grist.app +++ /dev/null @@ -1,6 +0,0 @@ - ______ _ __ - / ____/____(_)____/ /_ - / / __/ ___/ / ___/ __/ -/ /_/ / / / (__ ) /_ -\____/_/ /_/____/\__/ - diff --git a/ct/grocy.app b/ct/grocy.app deleted file mode 100644 index 2aad01d4..00000000 --- a/ct/grocy.app +++ /dev/null @@ -1,6 +0,0 @@ - - ____ __________ _______ __ - / __ `/ ___/ __ \/ ___/ / / / - / /_/ / / / /_/ / /__/ /_/ / - \__, /_/ \____/\___/\__, / -/____/ /____/ diff --git a/ct/headscale.app b/ct/headscale.app deleted file mode 100644 index ff8ca514..00000000 --- a/ct/headscale.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ __ __ - / / / /__ ____ _____/ /_____________ _/ /__ - / /_/ / _ \/ __ `/ __ / ___/ ___/ __ `/ / _ \ - / __ / __/ /_/ / /_/ (__ ) /__/ /_/ / / __/ -/_/ /_/\___/\__,_/\__,_/____/\___/\__,_/_/\___/ - diff --git a/ct/heimdall-dashboard.app b/ct/heimdall-dashboard.app deleted file mode 100644 index 245902b7..00000000 --- a/ct/heimdall-dashboard.app +++ /dev/null @@ -1,12 +0,0 @@ - __ __ _ __ ____ ____ __ __ - / / / /__ (_)___ ___ ____/ /___ _/ / / / __ \____ ______/ /_ / /_ - / /_/ / _ \/ / __ `__ \/ __ / __ `/ / /_____/ / / / __ `/ ___/ __ \/ __ \ - / __ / __/ / / / / / / /_/ / /_/ / / /_____/ /_/ / /_/ (__ ) / / / /_/ / -/_/ /_/\___/_/_/ /_/ /_/\__,_/\__,_/_/_/ /_____/\__,_/____/_/ /_/_.___/ - - __ - ____ ____ __________/ / - / __ \/ __ `/ ___/ __ / -/ /_/ / /_/ / / / /_/ / -\____/\__,_/_/ \__,_/ - diff --git a/ct/hivemq.app b/ct/hivemq.app deleted file mode 100644 index ac5216a7..00000000 --- a/ct/hivemq.app +++ /dev/null @@ -1,6 +0,0 @@ - __ ___ __ _______ - / / / (_) _____ / |/ / __ \ - / /_/ / / | / / _ \/ /|_/ / / / / - / __ / /| |/ / __/ / / / /_/ / -/_/ /_/_/ |___/\___/_/ /_/\___\_\ - diff --git a/ct/hoarder.app b/ct/hoarder.app deleted file mode 100644 index c09416d4..00000000 --- a/ct/hoarder.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ __ - / / / /___ ____ __________/ /__ _____ - / /_/ / __ \/ __ `/ ___/ __ / _ \/ ___/ - / __ / /_/ / /_/ / / / /_/ / __/ / -/_/ /_/\____/\__,_/_/ \__,_/\___/_/ - diff --git a/ct/homarr.app b/ct/homarr.app deleted file mode 100644 index 1bd7a939..00000000 --- a/ct/homarr.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ - / / / /___ ____ ___ ____ ___________ - / /_/ / __ \/ __ `__ \/ __ `/ ___/ ___/ - / __ / /_/ / / / / / / /_/ / / / / -/_/ /_/\____/_/ /_/ /_/\__,_/_/ /_/ - diff --git a/ct/homeassistant-core.app b/ct/homeassistant-core.app deleted file mode 100644 index efbc1643..00000000 --- a/ct/homeassistant-core.app +++ /dev/null @@ -1,12 +0,0 @@ - __ __ - / / / /___ ____ ___ ___ - / /_/ / __ \/ __ `__ \/ _ \ - / __ / /_/ / / / / / / __/ -/_/ /_/\____/_/ /_/ /_/\___/ - - ___ _ __ __ ______ - / | __________(_)____/ /_____ _____ / /_ / ____/___ ________ - / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/_____/ / / __ \/ ___/ _ \ - / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_/_____/ /___/ /_/ / / / __/ -/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/ - diff --git a/ct/homeassistant.app b/ct/homeassistant.app deleted file mode 100644 index a88730f4..00000000 --- a/ct/homeassistant.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ ___ _ __ __ - / / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_ - / /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ - / __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ -/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ - diff --git a/ct/homebox.app b/ct/homebox.app deleted file mode 100644 index da717216..00000000 --- a/ct/homebox.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ ____ - / / / /___ ____ ___ ___ / __ )____ _ __ - / /_/ / __ \/ __ `__ \/ _ \/ __ / __ \| |/_/ - / __ / /_/ / / / / / / __/ /_/ / /_/ /> < -/_/ /_/\____/_/ /_/ /_/\___/_____/\____/_/|_| - diff --git a/ct/homebridge.app b/ct/homebridge.app deleted file mode 100644 index a3da0240..00000000 --- a/ct/homebridge.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ __ _ __ - / / / /___ ____ ___ ___ / /_ _____(_)___/ /___ ____ - / /_/ / __ \/ __ `__ \/ _ \/ __ \/ ___/ / __ / __ `/ _ \ - / __ / /_/ / / / / / / __/ /_/ / / / / /_/ / /_/ / __/ -/_/ /_/\____/_/ /_/ /_/\___/_.___/_/ /_/\__,_/\__, /\___/ - /____/ diff --git a/ct/homepage.app b/ct/homepage.app deleted file mode 100644 index 4ff42a16..00000000 --- a/ct/homepage.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ - / / / /___ ____ ___ ___ ____ ____ _____ ____ - / /_/ / __ \/ __ `__ \/ _ \/ __ \/ __ `/ __ `/ _ \ - / __ / /_/ / / / / / / __/ /_/ / /_/ / /_/ / __/ -/_/ /_/\____/_/ /_/ /_/\___/ .___/\__,_/\__, /\___/ - /_/ /____/ diff --git a/ct/homer.app b/ct/homer.app deleted file mode 100644 index 80e4281a..00000000 --- a/ct/homer.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ - / / / /___ ____ ___ ___ _____ - / /_/ / __ \/ __ `__ \/ _ \/ ___/ - / __ / /_/ / / / / / / __/ / -/_/ /_/\____/_/ /_/ /_/\___/_/ - diff --git a/ct/hyperhdr.app b/ct/hyperhdr.app deleted file mode 100644 index cbbcfc57..00000000 --- a/ct/hyperhdr.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ __ ______ ____ - / / / /_ ______ ___ _____/ / / / __ \/ __ \ - / /_/ / / / / __ \/ _ \/ ___/ /_/ / / / / /_/ / - / __ / /_/ / /_/ / __/ / / __ / /_/ / _, _/ -/_/ /_/\__, / .___/\___/_/ /_/ /_/_____/_/ |_| - /____/_/ diff --git a/ct/hyperion.app b/ct/hyperion.app deleted file mode 100644 index 2c0f7972..00000000 --- a/ct/hyperion.app +++ /dev/null @@ -1,6 +0,0 @@ - __ __ _ - / / / /_ ______ ___ _____(_)___ ____ - / /_/ / / / / __ \/ _ \/ ___/ / __ \/ __ \ - / __ / /_/ / /_/ / __/ / / / /_/ / / / / -/_/ /_/\__, / .___/\___/_/ /_/\____/_/ /_/ - /____/_/ diff --git a/ct/influxdb.app b/ct/influxdb.app deleted file mode 100644 index b8efea54..00000000 --- a/ct/influxdb.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ ______ ____ ____ - / _/___ / __/ /_ ___ __/ __ \/ __ ) - / // __ \/ /_/ / / / / |/_/ / / / __ | - _/ // / / / __/ / /_/ /> < -/_/ |_/\___/\__/_____/\____/_/|_| - diff --git a/ct/nextcloudpi.app b/ct/nextcloudpi.app deleted file mode 100644 index 9aa8b594..00000000 --- a/ct/nextcloudpi.app +++ /dev/null @@ -1,6 +0,0 @@ - _ __ __ ________ ______ _ - / | / /__ _ __/ /_/ ____/ /___ __ ______/ / __ \(_) - / |/ / _ \| |/_/ __/ / / / __ \/ / / / __ / /_/ / / - / /| / __/> < / ____/ / / /_/ /> < -/_/ \__,_/ .___/\___/_/ /_/\___/____/____/ /_/ /_/\__, /_/|_| - /_/ /____/ diff --git a/ct/part-db.app b/ct/part-db.app deleted file mode 100644 index fe325550..00000000 --- a/ct/part-db.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ ____ ____ - / __ \____ ______/ /_ / __ \/ __ ) - / /_/ / __ `/ ___/ __/_____/ / / / __ | - / ____/ /_/ / / / /_/_____/ /_/ / /_/ / -/_/ \__,_/_/ \__/ /_____/_____/ - diff --git a/ct/pbs.app b/ct/pbs.app deleted file mode 100644 index 785d90a8..00000000 --- a/ct/pbs.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ ____ _____ - / __ \/ __ ) ___/ - / /_/ / __ \__ \ - / ____/ /_/ /__/ / -/_/ /_____/____/ - diff --git a/ct/peanut.app b/ct/peanut.app deleted file mode 100644 index 11a2cd5c..00000000 --- a/ct/peanut.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _ ____ ________ - / __ \___ ____ _/ | / / / / /_ __/ - / /_/ / _ \/ __ `/ |/ / / / / / / - / ____/ __/ /_/ / /| / /_/ / / / -/_/ \___/\__,_/_/ |_/\____/ /_/ - diff --git a/ct/petio.app b/ct/petio.app deleted file mode 100644 index d8deb745..00000000 --- a/ct/petio.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ _ - / __ \___ / /_(_)___ - / /_/ / _ \/ __/ / __ \ - / ____/ __/ /_/ / /_/ / -/_/ \___/\__/_/\____/ - diff --git a/ct/pf2etools.app b/ct/pf2etools.app deleted file mode 100644 index b6f7cb10..00000000 --- a/ct/pf2etools.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _______ ______ __ - / __ \/ __/__ \ ___/_ __/___ ____ / /____ - / /_/ / /_ __/ // _ \/ / / __ \/ __ \/ / ___/ - / ____/ __// __// __/ / / /_/ / /_/ / (__ ) -/_/ /_/ /____/\___/_/ \____/\____/_/____/ - diff --git a/ct/photoprism.app b/ct/photoprism.app deleted file mode 100644 index a8a9cabe..00000000 --- a/ct/photoprism.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ ____ _ - / __ \/ /_ ____ / /_____ / __ \_____(_)________ ___ - / /_/ / __ \/ __ \/ __/ __ \/ /_/ / ___/ / ___/ __ `__ \ - / ____/ / / / /_/ / /_/ /_/ / ____/ / / (__ ) / / / / / -/_/ /_/ /_/\____/\__/\____/_/ /_/ /_/____/_/ /_/ /_/ - diff --git a/ct/phpipam.app b/ct/phpipam.app deleted file mode 100644 index 51ba79de..00000000 --- a/ct/phpipam.app +++ /dev/null @@ -1,6 +0,0 @@ - __ ________ ___ __ ___ - ____ / /_ ____ / _/ __ \/ | / |/ / - / __ \/ __ \/ __ \ / // /_/ / /| | / /|_/ / - / /_/ / / / / /_/ // // ____/ ___ |/ / / / - / .___/_/ /_/ .___/___/_/ /_/ |_/_/ /_/ -/_/ /_/ diff --git a/ct/pialert.app b/ct/pialert.app deleted file mode 100644 index 07f2474c..00000000 --- a/ct/pialert.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _ ___ __ __ - / __ \(_) | / /__ _____/ /_ - / /_/ / / /| | / / _ \/ ___/ __/ - / ____/ / ___ |/ / __/ / / /_ -/_/ /_/_/ |_/_/\___/_/ \__/ - diff --git a/ct/pihole.app b/ct/pihole.app deleted file mode 100644 index 9a727b22..00000000 --- a/ct/pihole.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _ __ __ - / __ \(_) /_ ____ / /__ - / /_/ / / __ \/ __ \/ / _ \ - / ____/ / / / / /_/ / / __/ -/_/ /_/_/ /_/\____/_/\___/ - diff --git a/ct/pingvin.app b/ct/pingvin.app deleted file mode 100644 index 8177f817..00000000 --- a/ct/pingvin.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _ _ - / __ \(_)___ ____ __ __(_)___ - / /_/ / / __ \/ __ `/ | / / / __ \ - / ____/ / / / / /_/ /| |/ / / / / / -/_/ /_/_/ /_/\__, / |___/_/_/ /_/ - /____/ diff --git a/ct/plex.app b/ct/plex.app deleted file mode 100644 index 2e27d0b8..00000000 --- a/ct/plex.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \/ /__ _ __ - / /_/ / / _ \| |/_/ - / ____/ / __/> < -/_/ /_/\___/_/|_| - diff --git a/ct/pocketbase.app b/ct/pocketbase.app deleted file mode 100644 index 5eea8625..00000000 --- a/ct/pocketbase.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ __ - / __ \____ _____/ /_____ / /_/ /_ ____ _________ - / /_/ / __ \/ ___/ //_/ _ \/ __/ __ \/ __ `/ ___/ _ \ - / ____/ /_/ / /__/ ,< / __/ /_/ /_/ / /_/ (__ ) __/ -/_/ \____/\___/_/|_|\___/\__/_.___/\__,_/____/\___/ - diff --git a/ct/podman-homeassistant.app b/ct/podman-homeassistant.app deleted file mode 100644 index c1241da4..00000000 --- a/ct/podman-homeassistant.app +++ /dev/null @@ -1,12 +0,0 @@ - ____ __ __ __ - / __ \____ ____/ /___ ___ ____ _____ / / / /___ ____ ___ ___ - / /_/ / __ \/ __ / __ `__ \/ __ `/ __ \______/ /_/ / __ \/ __ `__ \/ _ \ - / ____/ /_/ / /_/ / / / / / / /_/ / / / /_____/ __ / /_/ / / / / / / __/ -/_/ \____/\__,_/_/ /_/ /_/\__,_/_/ /_/ /_/ /_/\____/_/ /_/ /_/\___/ - - ___ _ __ __ - / | __________(_)____/ /_____ _____ / /_ - / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ - / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ -/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ - diff --git a/ct/podman.app b/ct/podman.app deleted file mode 100644 index 2f81f14a..00000000 --- a/ct/podman.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \____ ____/ /___ ___ ____ _____ - / /_/ / __ \/ __ / __ `__ \/ __ `/ __ \ - / ____/ /_/ / /_/ / / / / / / /_/ / / / / -/_/ \____/\__,_/_/ /_/ /_/\__,_/_/ /_/ - diff --git a/ct/postgresql.app b/ct/postgresql.app deleted file mode 100644 index 8297b0ad..00000000 --- a/ct/postgresql.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ _____ ____ __ - / __ \____ _____/ /_____ _________ / ___// __ \ / / - / /_/ / __ \/ ___/ __/ __ `/ ___/ _ \\__ \/ / / / / / - / ____/ /_/ (__ ) /_/ /_/ / / / __/__/ / /_/ / / /___ -/_/ \____/____/\__/\__, /_/ \___/____/\___\_\/_____/ - /____/ diff --git a/ct/projectsend.app b/ct/projectsend.app deleted file mode 100644 index c388eb72..00000000 --- a/ct/projectsend.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ _ __ _____ __ - / __ \_________ (_)__ _____/ /_/ ___/___ ____ ____/ / - / /_/ / ___/ __ \ / / _ \/ ___/ __/\__ \/ _ \/ __ \/ __ / - / ____/ / / /_/ / / / __/ /__/ /_ ___/ / __/ / / / /_/ / -/_/ /_/ \____/_/ /\___/\___/\__//____/\___/_/ /_/\__,_/ - /___/ diff --git a/ct/prometheus-alertmanager.app b/ct/prometheus-alertmanager.app deleted file mode 100644 index 43a4876b..00000000 --- a/ct/prometheus-alertmanager.app +++ /dev/null @@ -1,12 +0,0 @@ - ____ __ __ ___ __ - / __ \_________ ____ ___ ___ / /_/ /_ ___ __ _______ / | / / - / /_/ / ___/ __ \/ __ `__ \/ _ \/ __/ __ \/ _ \/ / / / ___/_____/ /| | / / - / ____/ / / /_/ / / / / / / __/ /_/ / / / __/ /_/ (__ )_____/ ___ |/ / -/_/ /_/ \____/_/ /_/ /_/\___/\__/_/ /_/\___/\__,_/____/ /_/ |_/_/ - - __ - ___ _____/ /_____ ___ ____ _____ ____ _____ ____ _____ - / _ \/ ___/ __/ __ `__ \/ __ `/ __ \/ __ `/ __ `/ _ \/ ___/ -/ __/ / / /_/ / / / / / /_/ / / / / /_/ / /_/ / __/ / -\___/_/ \__/_/ /_/ /_/\__,_/_/ /_/\__,_/\__, /\___/_/ - /____/ diff --git a/ct/prometheus.app b/ct/prometheus.app deleted file mode 100644 index f5a9cccc..00000000 --- a/ct/prometheus.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ __ - / __ \_________ ____ ___ ___ / /_/ /_ ___ __ _______ - / /_/ / ___/ __ \/ __ `__ \/ _ \/ __/ __ \/ _ \/ / / / ___/ - / ____/ / / /_/ / / / / / / __/ /_/ / / / __/ /_/ (__ ) -/_/ /_/ \____/_/ /_/ /_/\___/\__/_/ /_/\___/\__,_/____/ - diff --git a/ct/prowlarr.app b/ct/prowlarr.app deleted file mode 100644 index 10255b7a..00000000 --- a/ct/prowlarr.app +++ /dev/null @@ -1,6 +0,0 @@ - ____ __ - / __ \_________ _ __/ /___ ___________ - / /_/ / ___/ __ \ | /| / / / __ `/ ___/ ___/ - / ____/ / / /_/ / |/ |/ / / /_/ / / / / -/_/ /_/ \____/|__/|__/_/\__,_/_/ /_/ - diff --git a/ct/proxmox-datacenter-manager.app b/ct/proxmox-datacenter-manager.app deleted file mode 100644 index bd181cc9..00000000 --- a/ct/proxmox-datacenter-manager.app +++ /dev/null @@ -1,18 +0,0 @@ - __ __ - ____ _________ _ ______ ___ ____ _ __ ____/ /___ _/ /_____ _ - / __ \/ ___/ __ \| |/_/ __ `__ \/ __ \| |/_/_____/ __ / __ `/ __/ __ `/ - / /_/ / / / /_/ /> < -/____/\__,_/_.___/_.___/_/_/|_| - diff --git a/ct/zammad.app b/ct/zammad.app deleted file mode 100644 index eb9999df..00000000 --- a/ct/zammad.app +++ /dev/null @@ -1,6 +0,0 @@ - _____ __ -/__ / ____ _____ ___ ____ ___ ____ _____/ / - / / / __ `/ __ `__ \/ __ `__ \/ __ `/ __ / - / /__/ /_/ / / / / / / / / / / / /_/ / /_/ / -/____/\__,_/_/ /_/ /_/_/ /_/ /_/\__,_/\__,_/ - diff --git a/ct/zigbee2mqtt.app b/ct/zigbee2mqtt.app deleted file mode 100644 index f6925a01..00000000 --- a/ct/zigbee2mqtt.app +++ /dev/null @@ -1,6 +0,0 @@ - _____ _ __ ___ __ _______ ____________ -/__ / (_)___ _/ /_ ___ ___ |__ \ / |/ / __ \/_ __/_ __/ - / / / / __ `/ __ \/ _ \/ _ \__/ // /|_/ / / / / / / / / - / /__/ / /_/ / /_/ / __/ __/ __// / / / /_/ / / / / / -/____/_/\__, /_.___/\___/\___/____/_/ /_/\___\_\/_/ /_/ - /____/ diff --git a/ct/zipline.app b/ct/zipline.app deleted file mode 100644 index ce2b4b91..00000000 --- a/ct/zipline.app +++ /dev/null @@ -1,6 +0,0 @@ - _____ _ ___ -/__ / (_)___ / (_)___ ___ - / / / / __ \/ / / __ \/ _ \ - / /__/ / /_/ / / / / / / __/ -/____/_/ .___/_/_/_/ /_/\___/ - /_/ diff --git a/ct/zoraxy.app b/ct/zoraxy.app deleted file mode 100644 index f93198af..00000000 --- a/ct/zoraxy.app +++ /dev/null @@ -1,6 +0,0 @@ - _____ -/__ / ____ _________ __ ____ __ - / / / __ \/ ___/ __ `/ |/_/ / / / - / /__/ /_/ / / / /_/ /> Date: Fri, 24 Jan 2025 14:46:14 +0100 Subject: [PATCH 32/36] Create test.txt --- ct/headers/test.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 ct/headers/test.txt diff --git a/ct/headers/test.txt b/ct/headers/test.txt new file mode 100644 index 00000000..e69de29b From 7723269bbc3a8c49a5a2d1c0a53bff0412f1ad1a Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:47:51 +0100 Subject: [PATCH 33/36] Update generate-app-headers.sh --- .github/workflows/scripts/generate-app-headers.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/generate-app-headers.sh b/.github/workflows/scripts/generate-app-headers.sh index e0811495..812ceb2e 100755 --- a/.github/workflows/scripts/generate-app-headers.sh +++ b/.github/workflows/scripts/generate-app-headers.sh @@ -1,13 +1,19 @@ #!/usr/bin/env bash +# Base directory for headers +headers_dir="./ct/headers" + +# Ensure the headers directory exists +mkdir -p "$headers_dir" + # Find all .sh files in ./ct directory, sorted alphabetically find ./ct -type f -name "*.sh" | sort | while read -r script; do # Extract the APP name from the APP line app_name=$(grep -oP '^APP="\K[^"]+' "$script" 2>/dev/null) if [[ -n "$app_name" ]]; then - # Define the output file name based on the .sh file - output_file="${script%.sh}.app" + # Define the output file name in the headers directory + output_file="${headers_dir}/$(basename "${script%.*}")" # Check if the output file already exists if [[ ! -f "$output_file" ]]; then From 7ff44c562bce11a0d5e36d4ca3a3cb72cbfed634 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:48:15 +0100 Subject: [PATCH 34/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index 44ddcb02..d4956b92 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -17,7 +17,7 @@ jobs: pull-requests: write steps: - # Step 1: Checkout repository + # Step 1: Checkout repository - name: Checkout repository uses: actions/checkout@v2 From 2db7cb1fdbdfa137208b0c835d4663c20411acc3 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:50:19 +0100 Subject: [PATCH 35/36] Update generate-app-headers.sh --- .../workflows/scripts/generate-app-headers.sh | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/scripts/generate-app-headers.sh b/.github/workflows/scripts/generate-app-headers.sh index 812ceb2e..f82c674d 100755 --- a/.github/workflows/scripts/generate-app-headers.sh +++ b/.github/workflows/scripts/generate-app-headers.sh @@ -3,8 +3,9 @@ # Base directory for headers headers_dir="./ct/headers" -# Ensure the headers directory exists +# Ensure the headers directory exists and clear it mkdir -p "$headers_dir" +rm -f "$headers_dir"/* # Find all .sh files in ./ct directory, sorted alphabetically find ./ct -type f -name "*.sh" | sort | while read -r script; do @@ -15,20 +16,15 @@ find ./ct -type f -name "*.sh" | sort | while read -r script; do # Define the output file name in the headers directory output_file="${headers_dir}/$(basename "${script%.*}")" - # Check if the output file already exists - if [[ ! -f "$output_file" ]]; then - # Generate figlet output - figlet_output=$(figlet -f slant "$app_name") + # Generate figlet output + figlet_output=$(figlet -f slant "$app_name") - # Check if figlet output is not empty - if [[ -n "$figlet_output" ]]; then - echo "$figlet_output" > "$output_file" - echo "Generated: $output_file" - else - echo "Figlet failed for $app_name in $script" - fi + # Check if figlet output is not empty + if [[ -n "$figlet_output" ]]; then + echo "$figlet_output" > "$output_file" + echo "Generated: $output_file" else - echo "Skipped: $output_file already exists" + echo "Figlet failed for $app_name in $script" fi else echo "No APP name found in $script, skipping." From b4f2594cef467cdc0a568b013f66f9939ae9658f Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 24 Jan 2025 14:50:48 +0100 Subject: [PATCH 36/36] Update auto-update-app-headers.yml --- .github/workflows/auto-update-app-headers.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-update-app-headers.yml b/.github/workflows/auto-update-app-headers.yml index d4956b92..dfa34200 100644 --- a/.github/workflows/auto-update-app-headers.yml +++ b/.github/workflows/auto-update-app-headers.yml @@ -6,7 +6,7 @@ on: - main paths: - 'ct/**.sh' - workflow_dispatch: # ErmΓΆglicht das manuelle AusfΓΌhren der Action + workflow_dispatch: jobs: update-app-files: @@ -47,11 +47,14 @@ jobs: - name: Check if there are any changes id: verify-diff run: | + echo "Checking for changes..." + git status if git diff --quiet; then echo "No changes detected." echo "changed=false" >> $GITHUB_OUTPUT else - echo "Changes detected." + echo "Changes detected:" + git diff --stat echo "changed=true" >> $GITHUB_OUTPUT fi @@ -76,3 +79,4 @@ jobs: - name: No changes detected if: steps.verify-diff.outputs.changed == 'false' run: echo "No changes to commit. Workflow completed successfully." +