feat: add updater to install script
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
ef6ae3f2b1
commit
1508fbb2bf
38
install.sh
38
install.sh
@ -11,12 +11,18 @@ SERVICE_NAME="${APP_NAME}.service"
|
||||
INSTALL_DIR="/usr/local/bin"
|
||||
CONFIG_DIR="/etc/${APP_NAME}"
|
||||
CHURN_DISCOVERY="https://churn.prod.kjuulh.app"
|
||||
LOG="/var/log/churn-install.log"
|
||||
|
||||
# Colors for output
|
||||
RED='\033[0;31m'
|
||||
GREEN='\033[0;32m'
|
||||
NC='\033[0m' # No Color
|
||||
|
||||
|
||||
exec > >(tee -i ${LOG})
|
||||
exec 2>&1
|
||||
echo "Starting churn install $(date)"
|
||||
|
||||
# Check if running as root
|
||||
if [ "$EUID" -ne 0 ]; then
|
||||
echo -e "${RED}Please run as root${NC}"
|
||||
@ -75,12 +81,44 @@ Environment=RUST_LOG=h2=warn,hyper=warn,churn=debug,warn
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
|
||||
echo "Creating churn update service..."
|
||||
cat > "/etc/systemd/system/${SERVICE_NAME}-update" <<EOF
|
||||
[Unit]
|
||||
Description=Daily Churn Update Service
|
||||
After=network-online.target
|
||||
Wants=network-online.target
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/bin/bash -c 'curl -s https://git.front.kjuulh.io/kjuulh/churn-v2/raw/branch/main/install.sh | bash'
|
||||
User=root
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
|
||||
cat > "/etc/systemd/system/${SERVICE_NAME}-update.timer" <<EOF
|
||||
[Unit]
|
||||
Description=Run Churn Update Daily
|
||||
|
||||
[Timer]
|
||||
OnCalendar=daily
|
||||
Persistent=true
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
||||
EOF
|
||||
|
||||
# Reload systemd and enable service
|
||||
echo "Configuring systemd service..."
|
||||
systemctl daemon-reload
|
||||
systemctl enable "${SERVICE_NAME}"
|
||||
systemctl start "${SERVICE_NAME}"
|
||||
|
||||
|
||||
systemctl enable "${SERVICE_NAME}-update.timer"
|
||||
systemctl start "${SERVICE_NAME}-update.timer"
|
||||
|
||||
# Check service status
|
||||
if systemctl is-active --quiet "${SERVICE_NAME}"; then
|
||||
echo -e "${GREEN}Installation successful! ${APP_NAME} is running.${NC}"
|
||||
|
Loading…
Reference in New Issue
Block a user