Compare commits

..

No commits in common. "de1a4b0914c63849912cb5187117191b8eeba1b0" and "28085bb2e78b63503b23922dd07f06276dd699d4" have entirely different histories.

3 changed files with 18 additions and 38 deletions

View File

@ -12,14 +12,6 @@ Be cautious of copycat or coat-tailing sites that exploit the project's populari
- All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment. - All LXC instances created using this repository come pre-installed with Midnight Commander, which is a command-line tool (`mc`) that offers a user-friendly file and directory management interface for the terminal environment.
## 2024-08-19
### Changed
- **CommaFeed LXC** [(Commit)](https://github.com/tteck/Proxmox/commit/0a33d1739ec3a49011411929bd46a260e92e99f9)
- Refactor Code
- Breaking Change
## 2024-08-06 ## 2024-08-06
### Changed ### Changed

View File

@ -55,27 +55,19 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -d /opt/commafeed ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/commafeed ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
RELEASE=$(curl -sL https://api.github.com/repos/Athou/commafeed/releases/latest | grep '"tag_name":' | cut -d'"' -f4) msg_info "Stopping CommaFeed"
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then systemctl stop commafeed
msg_info "Stopping ${APP}" msg_ok "Stopped CommaFeed"
systemctl stop commafeed
msg_ok "Stopped ${APP}"
msg_info "Updating ${APP} to ${RELEASE}" msg_info "Updating CommaFeed"
wget -q https://github.com/Athou/commafeed/releases/download/${RELEASE}/commafeed-${RELEASE}-h2-jvm.zip cd /opt/commafeed
unzip -q commafeed-${RELEASE}-h2-jvm.zip rm commafeed.jar
rsync -a --exclude 'data/' commafeed-${RELEASE}-h2/ /opt/commafeed/ wget -q https://github.com/Athou/commafeed/releases/latest/download/commafeed.jar
rm -rf commafeed-${RELEASE}-h2 commafeed-${RELEASE}-h2-jvm.zip msg_ok "Updated CommaFeed"
echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated ${APP} to ${RELEASE}"
msg_info "Starting ${APP}" msg_info "Starting CommaFeed"
systemctl start commafeed systemctl start commafeed
msg_ok "Started ${APP}" msg_ok "Update Completed Successfully"
msg_ok "Updated Successfully"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"
fi
exit exit
} }

View File

@ -17,7 +17,6 @@ msg_info "Installing Dependencies"
$STD apt-get install -y curl $STD apt-get install -y curl
$STD apt-get install -y sudo $STD apt-get install -y sudo
$STD apt-get install -y mc $STD apt-get install -y mc
$STD apt-get install -y rsync
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Installing Azul Zulu" msg_info "Installing Azul Zulu"
@ -28,14 +27,11 @@ $STD apt-get update
$STD apt-get -y install zulu17-jdk $STD apt-get -y install zulu17-jdk
msg_ok "Installed Azul Zulu" msg_ok "Installed Azul Zulu"
RELEASE=$(curl -sL https://api.github.com/repos/Athou/commafeed/releases/latest | grep '"tag_name":' | cut -d'"' -f4) msg_info "Installing CommaFeed"
msg_info "Installing CommaFeed ${RELEASE}" mkdir /opt/commafeed && cd /opt/commafeed
mkdir /opt/commafeed wget -q https://github.com/Athou/commafeed/releases/latest/download/commafeed.jar
wget -q https://github.com/Athou/commafeed/releases/download/${RELEASE}/commafeed-${RELEASE}-h2-jvm.zip wget -q https://github.com/Athou/commafeed/releases/latest/download/config.yml.example -O config.yml
unzip -q commafeed-${RELEASE}-h2-jvm.zip msg_ok "Installed CommaFeed"
mv commafeed-${RELEASE}-h2/* /opt/commafeed/
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
msg_ok "Installed CommaFeed ${RELEASE}"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/commafeed.service cat <<EOF >/etc/systemd/system/commafeed.service
@ -44,7 +40,7 @@ Description=CommaFeed Service
After=network.target After=network.target
[Service] [Service]
ExecStart=java -jar quarkus-run.jar ExecStart=/usr/bin/java -Djava.net.preferIPv4Stack=true -jar /opt/commafeed/commafeed.jar server /opt/commafeed/config.yml
WorkingDirectory=/opt/commafeed/ WorkingDirectory=/opt/commafeed/
Restart=always Restart=always
@ -58,7 +54,7 @@ motd_ssh
customize customize
msg_info "Cleaning up" msg_info "Cleaning up"
rm -rf commafeed-${RELEASE}-h2 commafeed-${RELEASE}-h2-jvm.zip zulu-repo_1.0.0-3_all.deb rm -rf zulu-repo_1.0.0-3_all.deb
$STD apt-get -y autoremove $STD apt-get -y autoremove
$STD apt-get -y autoclean $STD apt-get -y autoclean
msg_ok "Cleaned" msg_ok "Cleaned"