1 2 3 4 5 6 7 8 9 10 11 12 13
|
# Example python-keyring config (used by mini-buildd utils)
#
# This sample forces to always use the PLAINTEXT keyring from
# :debpkg:`python3-keyrings.alt`. While this is generally frowned
# upon, it might be suitable on a server to run unattended API calls
# (w/o any further dependencies).
#
# This file resides in: ``~/.config/python_keyring/``.
# Password IN PLAIN will then be be saved in: ``~/.local/share/python_keyring/keyring_pass.cfg``
#
# For version < 21.3.0 (<= buster), the config file was also placed in ``~/.local/share/python_keyring/``.
[backend]
default-keyring=keyrings.alt.file.PlaintextKeyring
|