Compare commits

..

No commits in common. "f20d65a606f6b6cd5f524f3f6151a9045591767d" and "c073351b4c9bd91c1fbb7f7172c3b9a79d47de61" have entirely different histories.

2 changed files with 27 additions and 30 deletions

View File

@ -55,31 +55,26 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -d /opt/homepage ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/homepage ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
if [[ "$(node -v | cut -d 'v' -f 2)" == "18."* ]]; then if [[ "$(node -v | cut -d 'v' -f 2)" == "18."* ]]; then
if ! command -v npm >/dev/null 2>&1; then if ! command -v npm >/dev/null 2>&1; then
echo "Installing NPM..." echo "Installing NPM..."
apt-get install -y npm >/dev/null 2>&1 apt-get install -y npm >/dev/null 2>&1
npm install -g pnpm >/dev/null 2>&1
echo "Installed NPM..." echo "Installed NPM..."
fi fi
fi fi
RELEASE=$(curl -s https://api.github.com/repos/gethomepage/homepage/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') RELEASE=$(curl -s https://api.github.com/repos/gethomepage/homepage/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }')
if [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]] || [[ ! -f /opt/${APP}_version.txt ]]; then msg_info "Updating Homepage to v${RELEASE} (Patience)"
msg_info "Updating Homepage to v${RELEASE} (Patience)" systemctl stop homepage
systemctl stop homepage wget -q https://github.com/gethomepage/homepage/archive/refs/tags/v${RELEASE}.tar.gz
wget -q https://github.com/gethomepage/homepage/archive/refs/tags/v${RELEASE}.tar.gz tar -xzf v${RELEASE}.tar.gz
tar -xzf v${RELEASE}.tar.gz cp -r homepage-${RELEASE}/* /opt/homepage/
cp -r homepage-${RELEASE}/* /opt/homepage/ rm -rf homepage-${RELEASE}
rm -rf homepage-${RELEASE} cd /opt/homepage
cd /opt/homepage npx update-browserslist-db@latest
npx update-browserslist-db@latest pnpm install
pnpm install pnpm build
pnpm build systemctl start homepage
systemctl start homepage msg_ok "Updated Homepage to v${RELEASE}"
msg_ok "Updated Homepage to v${RELEASE}"
else
msg_ok "No update required. ${APP} is already at ${RELEASE}"
fi
exit exit
} }

View File

@ -17,7 +17,11 @@ 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 gpg $STD apt-get install -y make
$STD apt-get install -y g++
$STD apt-get install -y gcc
$STD apt-get install -y ca-certificates
$STD apt-get install -y gnupg
msg_ok "Installed Dependencies" msg_ok "Installed Dependencies"
msg_info "Setting up Node.js Repository" msg_info "Setting up Node.js Repository"
@ -43,12 +47,11 @@ cd /opt/homepage
cp /opt/homepage/src/skeleton/* /opt/homepage/config cp /opt/homepage/src/skeleton/* /opt/homepage/config
$STD pnpm install $STD pnpm install
$STD pnpm build $STD pnpm build
echo "${RELEASE}" >/opt/${APPLICATION}_version.txt
msg_ok "Installed Homepage v${RELEASE}" msg_ok "Installed Homepage v${RELEASE}"
msg_info "Creating Service" msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/homepage.service service_path="/etc/systemd/system/homepage.service"
[Unit] echo "[Unit]
Description=Homepage Description=Homepage
After=network.target After=network.target
StartLimitIntervalSec=0 StartLimitIntervalSec=0
@ -60,9 +63,8 @@ User=root
WorkingDirectory=/opt/homepage/ WorkingDirectory=/opt/homepage/
ExecStart=pnpm start ExecStart=pnpm start
[Install] [Install]
WantedBy=multi-user.target WantedBy=multi-user.target" >$service_path
EOF $STD systemctl enable --now homepage
systemctl enable -q --now homepage
msg_ok "Created Service" msg_ok "Created Service"
motd_ssh motd_ssh