D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
sbin
/
modules
/
log-browser
/
Filename :
postconf
back
Copy
#!/usr/bin/env bash # Copyright 1999-2024. WebPros International GmbH. All rights reserved. main() { local command="${1:?"Command must be specified as the first parameter"}" case "$command" in get-long-queue-ids-status) postconf -x enable_long_queue_ids | cut -d'=' -f2 | tr -d ' ' exit $? ;; get-hash-queue-depth) postconf -x hash_queue_depth | cut -d'=' -f2 | tr -d ' ' exit $? ;; *) echo "Unknown command: ${command}" >&2 exit 1 ;; esac } main "$@"