| 1 | # garcard example configuration |
| 2 | |
| 3 | # Optional explicit socket path. |
| 4 | # socket_path = "/tmp/garcard.sock" |
| 5 | |
| 6 | # Socket mode in octal string form. |
| 7 | # Typical values: |
| 8 | # - 600: owner read/write |
| 9 | # - 660: owner/group read/write |
| 10 | socket_mode = "600" |
| 11 | |
| 12 | # Backend mode: |
| 13 | # - auto: try polkit, then fall back to stub if unavailable |
| 14 | # - polkit: require polkit backend registration |
| 15 | # - stub: run with local stub backend (dev/test only) |
| 16 | agent_backend = "auto" |
| 17 | |
| 18 | # Polkit registration object path. |
| 19 | polkit_object_path = "/org/gardesk/Garcard/AuthAgent" |
| 20 | |
| 21 | # Locale sent to polkit authority registration. |
| 22 | locale = "en_US.UTF-8" |
| 23 | |
| 24 | # Backend health check interval in seconds. |
| 25 | # Failed checks trigger a reconnect attempt for the selected auth backend. |
| 26 | backend_healthcheck_secs = "5" |