All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:31, 26 August 2026 Kenneth talk contribs created page Pinentry (Created page with " echo -e 'SETTITLE YUBI\nSETDESC YUBI\nSETPROMPT YUBI\nSETERROR YUBI\nGETPIN\n' | /usr/bin/pinentry | grep '^D' sample-pinentry.sh :: <pre> #!/bin/bash # Ensure pinentry is installed command -v pinentry >/dev/null 2>&1 || { echo "ERROR: pinentry not found" exit 1 } # Talk to pinentry using its text protocol response=$( { echo "SETTITLE Credential Prompt" echo "SETPROMPT Passphrase:" echo "SETDESC Please enter your passphrase." echo "GETPIN" }...")