From 859d79d1b66f6d188181793ee70f8a418b1aa57c Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 6 Nov 2025 10:40:35 +0300 Subject: [PATCH] fix: Correct binary name from pezkuwi-node to pezkuwi in systemd service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SDK builds a binary named 'pezkuwi' not 'pezkuwi-node'. This was causing validator services to fail with exit code 203/EXEC. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 11180bc..b557503 100755 --- a/setup.sh +++ b/setup.sh @@ -427,7 +427,7 @@ Type=simple User=$ACTUAL_USER WorkingDirectory=$VALIDATOR_DIR EnvironmentFile=$VALIDATOR_DIR/config/validator.conf -ExecStart=$SDK_DIR/target/release/pezkuwi-node $NODE_ARGS +ExecStart=$SDK_DIR/target/release/pezkuwi $NODE_ARGS Restart=always RestartSec=10 StandardOutput=append:$VALIDATOR_DIR/logs/validator.log