7 lines
380 B
Bash
Executable File
7 lines
380 B
Bash
Executable File
#!/bin/bash
|
|
# V31 batch generator - Opus WIRE doctrine 13+7 - Skill: pg-plans-count
|
|
# Description: PG wevia_plans count
|
|
# Whitelist-safe timeout 8s
|
|
set +e
|
|
timeout 8 bash -c "PGPASSWORD=admin123 psql -h 10.1.0.3 -U admin -d adx_system -tAc 'SELECT count(*) FROM admin.wevia_plans' 2>&1 || echo 0" 2>&1 || echo "{\"skill\":\"pg-plans-count\",\"error\":\"timeout_or_missing_tool\"}"
|