Files
proxmox/config/systemd/ccip-relay.service
defiQUG dbd517b279 Sync workspace: config, docs, scripts, CI, operator rules, and submodule pointers.
- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains
- Omit embedded publish git dirs and empty placeholders from index

Made-with: Cursor
2026-04-12 06:12:20 -07:00

26 lines
876 B
Desktop File

# Install on Proxmox host (e.g. r630-01) where /opt/smom-dbis-138/services/relay exists:
# sudo cp config/systemd/ccip-relay.service /etc/systemd/system/ccip-relay.service
# sudo systemctl daemon-reload && sudo systemctl enable --now ccip-relay
#
# Uses the tracked `mainnet-weth` profile and skips `.env.local` so WETH delivery policy
# stays explicit even when operators keep local override files around for other lanes.
[Unit]
Description=CCIP relay service (Chain 138 to Mainnet)
After=network-online.target
Wants=network-online.target
StartLimitIntervalSec=0
[Service]
Type=simple
User=root
WorkingDirectory=/opt/smom-dbis-138/services/relay
Environment=RELAY_SKIP_ENV_LOCAL=1
Environment=RELAY_HEALTH_PORT=9860
ExecStart=/bin/bash /opt/smom-dbis-138/services/relay/start-relay.sh mainnet-weth
Restart=on-failure
RestartSec=15
[Install]
WantedBy=multi-user.target