bignole


Namebignole JSON
Version 0.1.2 PyPI version JSON
download
home_pageNone
SummarySmall utility/daemon which is intended to help human to maintain their SSH configs
upload_time2025-07-16 16:15:36
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseNone
keywords ssh concierge
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            bignole
*******

|PyPI|

``bignole`` is a small utility/daemon which is intended to help humans
to maintain their SSH configs.


It’s a fork of `concierge`_.
"Bignole" is an old french slang term for "concierge".


.. contents::
    :depth: 2
    :backlinks: none


Why forking?
============

Concierge was unmaintained for quite a long time, the dependencies where
outdated, pull requests where unmerged or unanswered…

To simplify the maintenance, some choices were made like:

- dropping ``libnotify`` support
- integrating ``mako`` and ``jinja2`` templates engines as optional
  dependencies instead of separate packages


Introduction (by concierge author)
==================================

There is not problems with SSH config format: it works for decades and
is going to work for my children I guess. This utility will die, but one
will update his ``~/.ssh/config`` to access some network server.

The problem with SSH that it really hard to scale. I am not quite sure
about other people jobs, but on my current and previous jobs I was
used to maintain quite large sets of records in SSH configs. Usual
deployment of some modern app consist several machines (let's say ``X``)
and during development we are using several stage environments (let's
say ``Y``). So, frankly, you need to have ``X * Y`` records in your
``~/.ssh/config``. Only for work.

Sometimes you need to jugle with jump hosts. Sometimes your stage is
moving to another set of IPs. Sometimes life happens and it is quite
irritating to manage these configuration manually.

I did a lot of CSS stylesheets and SSH config management is pretty close
to that. I want to have SASS_ for SSH config. The main goal of this
tool is to provide user with some templating and clutter-free config
management in SASS way.


Demo
====

.. image:: https://asciinema.org/a/dqxhschtqyx7lxfda25irbgh5.png
    :alt: Asciinema screencast
    :width: 700
    :target: https://asciinema.org/a/dqxhschtqyx7lxfda25irbgh5


Installation
============

Installation is quite trivial:

.. code-block:: shell

    $ pip install bignole

or if you want to install it manually, do following:

.. code-block:: shell

    $ git clone https://framagit.org/fiat-tux/bignole
    $ cd bignole
    $ pip install .

By default, no template support is going to be installed. If you want to
use Mako_ or Jinja2_, please refer to `Templaters`_ section.

Please be noticed, that ``bignole`` is **Python 3** only tool. It
should work on ``cPython >= 3.11`` without any problems.

After installation, 2 utilities will be available:

* ``bignole-check``
* ``bignole``


Templaters
----------

``bignole`` comes with support of additional templaters, you may plug
them in installing the optional dependencies from PyPI. At the time of writing,
support of following templaters was done:

* support of Mako_ templates
* support of Jinja2_ templates

To install them just do

.. code-block:: shell

    $ pip install 'bignole[mako]'
    $ pip install 'bignole[jinja]'

And ``bignole`` will automatically recognizes support of Mako and now
one may use ``bignole -u mako`` or ``bignole -u jinja`` for her
``~/.bignolerc``.


bignole-check
-------------

``bignole-check`` is a tool to verify syntax of your
``~/.bignolerc`` file. Please check `Syntax description`_ to get on
speed.

Also, it supports a number of options but they are pretty trivial.

Please remember, that both ``bignole-check`` and ``bignole``
use syslog for logging data in process. Options like ``--debug`` or
``--verbose`` will affect only stderr logging, syslog will have only
errors.


bignole
-------

``bignole`` is intended to work in daemon mode. It converts between
your ``~/.bignolerc`` and destination ``~/.ssh/config`` (so
`Installation`_ magic work in that way).

I use systemd so ``bignole`` is bundled to support it. To get an
instructions of how to use the tool with systemd, please run following:

.. code-block:: shell

    $ bignole --systemd

It will printout an instructions. If you do not care, please run following:

.. code-block:: shell

    $ eval "$(bignole --systemd --pipesh)"

It will install systemd user unit and run bignole daemon automatically.

``bignole`` supports the same options and behavior as
`bignole-check`_ so please track your syslog for problems.


Syntax description
==================

Well, there is no big difference between plain old ``ssh_config(5)`` and
``bignole`` style. Base is the same so please check the table with
examples to understand what is going to be converted and how.

Syntax came from the way I structure my SSH configs for a long time.
Basically I am trying to keep it in the way it looks like hierarchical.

Let's grow the syntax. Consider following config

::

    Host m
        HostName 127.0.0.1

    Host me0
        HostName 10.10.0.0

    Host me1
        HostName 10.10.0.1

    Host m me0 me1
        Compression no
        ProxyCommand ssh -W %h:%p env1
        User nineseconds

    Host *
        Compression yes
        CompressionLevel 9


So far so good. Now let's... indent!

::

    Host m
        HostName 127.0.0.1

        Host me0
            HostName 10.10.0.0
            ProxyCommand ssh -W %h:%p env1

        Host me1
            HostName 10.10.0.1
            ProxyCommand ssh -W %h:%p env1

        Host m me0 me1
            Compression no
            User nineseconds

    Host *
        Compression yes
        CompressionLevel 9


It is still valid SSH config. And valid ``bignole`` config. Probably
you already do similar indentation to visually differ different server
groups. Let's check what do we have here: we have prefixes, right. And
most of options are quite common to the server groups (environments).

Now let's eliminate ``Host m me0 me1`` block. This would be invalid SSH
config but valid ``bignolerc`` config. Also I am going to get rid of
useless prefixes and use hierarchy to determine full name (``fullname =
name + parent_name``).

Please be noticed that all operations maintain effectively the same
``bignolerc`` config.

::

    Host m
        Compression no
        HostName 127.0.0.1
        User nineseconds

        Host e0
            HostName 10.10.0.0
            ProxyCommand ssh -W %h:%p env1

        Host e1
            HostName 10.10.0.1
            ProxyCommand ssh -W %h:%p env1

    Host *
        Compression yes
        CompressionLevel 9


Okay. Do we need rudiment ``Host *`` section? No, let's move everything
on the top. Idea is the same, empty prefix is ``*``.

::

    Compression yes
    CompressionLevel 9

    Host m
        Compression no
        HostName 127.0.0.1
        User nineseconds

        Host e0
            HostName 10.10.0.0
            ProxyCommand ssh -W %h:%p env1

        Host e1
            HostName 10.10.0.1
            ProxyCommand ssh -W %h:%p env1


By the way, you may see, that indentation defines parent is the same
way as Python syntax is organized. So following config is absolutely
equivalent.

::

    Compression yes

    Host m
        Compression no
        HostName 127.0.0.1
        User nineseconds

        Host e0
            HostName 10.10.0.0
            ProxyCommand ssh -W %h:%p env1

        Host e1
            HostName 10.10.0.1
            ProxyCommand ssh -W %h:%p env1

    CompressionLevel 9

You can also work the other way around with a star.
In this example, I remove the first Host line from being generated and add that
domain information to other host.
Also, ProxyJump is available

::

    Compression yes

    -Host *.my.domain
        Compression no
        User tr4sk
        ProxyJump gateway

        Host server1
            User root
        Host server2


This is a basic. But if you install ``bignole`` with support of Mako or
Jinja2 templates, you may use them in your ``~/.bignolerc``.

::

    Compression yes
    CompressionLevel 9

    Host m
        Compression no
        HostName 127.0.0.1
        User nineseconds

        % for i in range(2):
        Host e${i}
            HostName 10.10.0.${i}
            ProxyCommand ssh -W %h:%p env1
        % endfor

This is a Mako template I use. Please refer `Mako
<http://docs.makotemplates.org/en/latest/syntax.html>`__ and `Jinja2
<http://jinja.pocoo.org/docs/dev/templates/>`__ documentation for details.

By the way, if you want to hide some host you are using for grouping only,
please prefix it with ``-`` (``-Host``).


Examples
--------

Here are some examples. Please do not hesitate to check `Demo`_, pause it,
look around.

+----------------------------------------+--------------------------------------------+
| Source, converted from (~/.bignole)    | Destination, converted to (~/.ssh/config)  |
+========================================+============================================+
| ::                                     | ::                                         |
|                                        |                                            |
|   Host name                            |   Host name                                |
|       HostName 127.0.0.1               |       HostName 127.0.0.1                   |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host name                                |
|                                        |       HostName 127.0.0.1                   |
|   Host name                            |                                            |
|       HostName 127.0.0.1               |   Host *                                   |
|                                        |       Compression yes                      |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host name                                |
|                                        |       HostName 127.0.0.1                   |
|   Host name                            |                                            |
|       HostName 127.0.0.1               |   Host *                                   |
|                                        |       Compression yes                      |
|   Host *                               |       CompressionLevel 9                   |
|       CompressionLevel 9               |                                            |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host name                                |
|                                        |       HostName 127.0.0.1                   |
|   Host name                            |                                            |
|       HostName 127.0.0.1               |   Host nameq                               |
|                                        |       HostName node-1                      |
|       Host q                           |       ProxyCommand ssh -W %h:%p env1       |
|           ViaJumpHost env1             |                                            |
|           HostName node-1              |   Host *                                   |
|                                        |       Compression yes                      |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host nameq                               |
|                                        |       HostName node-1                      |
|   -Host name                           |       ProxyCommand ssh -W %h:%p env1       |
|       HostName 127.0.0.1               |                                            |
|                                        |   Host *                                   |
|       Host q                           |       Compression yes                      |
|           ViaJumpHost env1             |                                            |
|           HostName node-1              |                                            |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host blog                                |
|                                        |       User sa                              |
|   Host m                               |                                            |
|       User nineseconds                 |   Host me0                                 |
|                                        |       HostName 10.10.0.0                   |
|       % for i in range(2):             |       Protocol 2                           |
|       Host e${i}                       |       ProxyCommand ssh -W %h:%p gw2        |
|           HostName 10.10.0.${i}        |       User nineseconds                     |
|           ViaJumpHost gw2              |                                            |
|       % endfor                         |   Host me1                                 |
|                                        |       HostName 10.10.0.1                   |
|       Protocol 2                       |       Protocol 2                           |
|                                        |       ProxyCommand ssh -W %h:%p gw2        |
|   Host blog                            |       User nineseconds                     |
|       User sa                          |                                            |
|                                        |   Host *                                   |
|                                        |       Compression yes                      |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+
| ::                                     | ::                                         |
|                                        |                                            |
|   Compression yes                      |   Host blog                                |
|                                        |       User sa                              |
|  -Host \*.my.domain                    |                                            |
|       User nineseconds                 |   Host first.my.domain                     |
|                                        |       Protocol 2                           |
|       Host first                       |       User nineseconds                     |
|       Host second                      |   Host second.my.domain                    |
|           HostName 10.10.10.1          |       User nineseconds                     |
|                                        |       Protocol 2                           |
|                                        |       HostName 10.10.10.1                  |
|       Protocol 2                       |                                            |
|                                        |   Host *                                   |
|   Host blog                            |       Compression yes                      |
|       User sa                          |                                            |
|                                        |                                            |
+----------------------------------------+--------------------------------------------+


.. _concierge: https://github.com/9seconds/concierge
.. _SASS: http://sass-lang.com
.. _Mako: http://www.makotemplates.org
.. _Jinja2: http://jinja.pocoo.org

.. |PyPI| image:: https://img.shields.io/pypi/v/bignole.svg
    :target: https://pypi.python.org/pypi/bignole

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "bignole",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "SSH, concierge",
    "author": null,
    "author_email": "Sergey Arkhipov <serge@aerialsounds.org>, Luc Didry <luc.bignole@didry.org>",
    "download_url": "https://files.pythonhosted.org/packages/9b/2d/c12087d7b267d357df21bdf62355e37e60a18e4bf090a37c68380e83de6d/bignole-0.1.2.tar.gz",
    "platform": null,
    "description": "bignole\n*******\n\n|PyPI|\n\n``bignole`` is a small utility/daemon which is intended to help humans\nto maintain their SSH configs.\n\n\nIt\u2019s a fork of `concierge`_.\n\"Bignole\" is an old french slang term for \"concierge\".\n\n\n.. contents::\n    :depth: 2\n    :backlinks: none\n\n\nWhy forking?\n============\n\nConcierge was unmaintained for quite a long time, the dependencies where\noutdated, pull requests where unmerged or unanswered\u2026\n\nTo simplify the maintenance, some choices were made like:\n\n- dropping ``libnotify`` support\n- integrating ``mako`` and ``jinja2`` templates engines as optional\n  dependencies instead of separate packages\n\n\nIntroduction (by concierge author)\n==================================\n\nThere is not problems with SSH config format: it works for decades and\nis going to work for my children I guess. This utility will die, but one\nwill update his ``~/.ssh/config`` to access some network server.\n\nThe problem with SSH that it really hard to scale. I am not quite sure\nabout other people jobs, but on my current and previous jobs I was\nused to maintain quite large sets of records in SSH configs. Usual\ndeployment of some modern app consist several machines (let's say ``X``)\nand during development we are using several stage environments (let's\nsay ``Y``). So, frankly, you need to have ``X * Y`` records in your\n``~/.ssh/config``. Only for work.\n\nSometimes you need to jugle with jump hosts. Sometimes your stage is\nmoving to another set of IPs. Sometimes life happens and it is quite\nirritating to manage these configuration manually.\n\nI did a lot of CSS stylesheets and SSH config management is pretty close\nto that. I want to have SASS_ for SSH config. The main goal of this\ntool is to provide user with some templating and clutter-free config\nmanagement in SASS way.\n\n\nDemo\n====\n\n.. image:: https://asciinema.org/a/dqxhschtqyx7lxfda25irbgh5.png\n    :alt: Asciinema screencast\n    :width: 700\n    :target: https://asciinema.org/a/dqxhschtqyx7lxfda25irbgh5\n\n\nInstallation\n============\n\nInstallation is quite trivial:\n\n.. code-block:: shell\n\n    $ pip install bignole\n\nor if you want to install it manually, do following:\n\n.. code-block:: shell\n\n    $ git clone https://framagit.org/fiat-tux/bignole\n    $ cd bignole\n    $ pip install .\n\nBy default, no template support is going to be installed. If you want to\nuse Mako_ or Jinja2_, please refer to `Templaters`_ section.\n\nPlease be noticed, that ``bignole`` is **Python 3** only tool. It\nshould work on ``cPython >= 3.11`` without any problems.\n\nAfter installation, 2 utilities will be available:\n\n* ``bignole-check``\n* ``bignole``\n\n\nTemplaters\n----------\n\n``bignole`` comes with support of additional templaters, you may plug\nthem in installing the optional dependencies from PyPI. At the time of writing,\nsupport of following templaters was done:\n\n* support of Mako_ templates\n* support of Jinja2_ templates\n\nTo install them just do\n\n.. code-block:: shell\n\n    $ pip install 'bignole[mako]'\n    $ pip install 'bignole[jinja]'\n\nAnd ``bignole`` will automatically recognizes support of Mako and now\none may use ``bignole -u mako`` or ``bignole -u jinja`` for her\n``~/.bignolerc``.\n\n\nbignole-check\n-------------\n\n``bignole-check`` is a tool to verify syntax of your\n``~/.bignolerc`` file. Please check `Syntax description`_ to get on\nspeed.\n\nAlso, it supports a number of options but they are pretty trivial.\n\nPlease remember, that both ``bignole-check`` and ``bignole``\nuse syslog for logging data in process. Options like ``--debug`` or\n``--verbose`` will affect only stderr logging, syslog will have only\nerrors.\n\n\nbignole\n-------\n\n``bignole`` is intended to work in daemon mode. It converts between\nyour ``~/.bignolerc`` and destination ``~/.ssh/config`` (so\n`Installation`_ magic work in that way).\n\nI use systemd so ``bignole`` is bundled to support it. To get an\ninstructions of how to use the tool with systemd, please run following:\n\n.. code-block:: shell\n\n    $ bignole --systemd\n\nIt will printout an instructions. If you do not care, please run following:\n\n.. code-block:: shell\n\n    $ eval \"$(bignole --systemd --pipesh)\"\n\nIt will install systemd user unit and run bignole daemon automatically.\n\n``bignole`` supports the same options and behavior as\n`bignole-check`_ so please track your syslog for problems.\n\n\nSyntax description\n==================\n\nWell, there is no big difference between plain old ``ssh_config(5)`` and\n``bignole`` style. Base is the same so please check the table with\nexamples to understand what is going to be converted and how.\n\nSyntax came from the way I structure my SSH configs for a long time.\nBasically I am trying to keep it in the way it looks like hierarchical.\n\nLet's grow the syntax. Consider following config\n\n::\n\n    Host m\n        HostName 127.0.0.1\n\n    Host me0\n        HostName 10.10.0.0\n\n    Host me1\n        HostName 10.10.0.1\n\n    Host m me0 me1\n        Compression no\n        ProxyCommand ssh -W %h:%p env1\n        User nineseconds\n\n    Host *\n        Compression yes\n        CompressionLevel 9\n\n\nSo far so good. Now let's... indent!\n\n::\n\n    Host m\n        HostName 127.0.0.1\n\n        Host me0\n            HostName 10.10.0.0\n            ProxyCommand ssh -W %h:%p env1\n\n        Host me1\n            HostName 10.10.0.1\n            ProxyCommand ssh -W %h:%p env1\n\n        Host m me0 me1\n            Compression no\n            User nineseconds\n\n    Host *\n        Compression yes\n        CompressionLevel 9\n\n\nIt is still valid SSH config. And valid ``bignole`` config. Probably\nyou already do similar indentation to visually differ different server\ngroups. Let's check what do we have here: we have prefixes, right. And\nmost of options are quite common to the server groups (environments).\n\nNow let's eliminate ``Host m me0 me1`` block. This would be invalid SSH\nconfig but valid ``bignolerc`` config. Also I am going to get rid of\nuseless prefixes and use hierarchy to determine full name (``fullname =\nname + parent_name``).\n\nPlease be noticed that all operations maintain effectively the same\n``bignolerc`` config.\n\n::\n\n    Host m\n        Compression no\n        HostName 127.0.0.1\n        User nineseconds\n\n        Host e0\n            HostName 10.10.0.0\n            ProxyCommand ssh -W %h:%p env1\n\n        Host e1\n            HostName 10.10.0.1\n            ProxyCommand ssh -W %h:%p env1\n\n    Host *\n        Compression yes\n        CompressionLevel 9\n\n\nOkay. Do we need rudiment ``Host *`` section? No, let's move everything\non the top. Idea is the same, empty prefix is ``*``.\n\n::\n\n    Compression yes\n    CompressionLevel 9\n\n    Host m\n        Compression no\n        HostName 127.0.0.1\n        User nineseconds\n\n        Host e0\n            HostName 10.10.0.0\n            ProxyCommand ssh -W %h:%p env1\n\n        Host e1\n            HostName 10.10.0.1\n            ProxyCommand ssh -W %h:%p env1\n\n\nBy the way, you may see, that indentation defines parent is the same\nway as Python syntax is organized. So following config is absolutely\nequivalent.\n\n::\n\n    Compression yes\n\n    Host m\n        Compression no\n        HostName 127.0.0.1\n        User nineseconds\n\n        Host e0\n            HostName 10.10.0.0\n            ProxyCommand ssh -W %h:%p env1\n\n        Host e1\n            HostName 10.10.0.1\n            ProxyCommand ssh -W %h:%p env1\n\n    CompressionLevel 9\n\nYou can also work the other way around with a star.\nIn this example, I remove the first Host line from being generated and add that\ndomain information to other host.\nAlso, ProxyJump is available\n\n::\n\n    Compression yes\n\n    -Host *.my.domain\n        Compression no\n        User tr4sk\n        ProxyJump gateway\n\n        Host server1\n            User root\n        Host server2\n\n\nThis is a basic. But if you install ``bignole`` with support of Mako or\nJinja2 templates, you may use them in your ``~/.bignolerc``.\n\n::\n\n    Compression yes\n    CompressionLevel 9\n\n    Host m\n        Compression no\n        HostName 127.0.0.1\n        User nineseconds\n\n        % for i in range(2):\n        Host e${i}\n            HostName 10.10.0.${i}\n            ProxyCommand ssh -W %h:%p env1\n        % endfor\n\nThis is a Mako template I use. Please refer `Mako\n<http://docs.makotemplates.org/en/latest/syntax.html>`__ and `Jinja2\n<http://jinja.pocoo.org/docs/dev/templates/>`__ documentation for details.\n\nBy the way, if you want to hide some host you are using for grouping only,\nplease prefix it with ``-`` (``-Host``).\n\n\nExamples\n--------\n\nHere are some examples. Please do not hesitate to check `Demo`_, pause it,\nlook around.\n\n+----------------------------------------+--------------------------------------------+\n| Source, converted from (~/.bignole)    | Destination, converted to (~/.ssh/config)  |\n+========================================+============================================+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Host name                            |   Host name                                |\n|       HostName 127.0.0.1               |       HostName 127.0.0.1                   |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host name                                |\n|                                        |       HostName 127.0.0.1                   |\n|   Host name                            |                                            |\n|       HostName 127.0.0.1               |   Host *                                   |\n|                                        |       Compression yes                      |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host name                                |\n|                                        |       HostName 127.0.0.1                   |\n|   Host name                            |                                            |\n|       HostName 127.0.0.1               |   Host *                                   |\n|                                        |       Compression yes                      |\n|   Host *                               |       CompressionLevel 9                   |\n|       CompressionLevel 9               |                                            |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host name                                |\n|                                        |       HostName 127.0.0.1                   |\n|   Host name                            |                                            |\n|       HostName 127.0.0.1               |   Host nameq                               |\n|                                        |       HostName node-1                      |\n|       Host q                           |       ProxyCommand ssh -W %h:%p env1       |\n|           ViaJumpHost env1             |                                            |\n|           HostName node-1              |   Host *                                   |\n|                                        |       Compression yes                      |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host nameq                               |\n|                                        |       HostName node-1                      |\n|   -Host name                           |       ProxyCommand ssh -W %h:%p env1       |\n|       HostName 127.0.0.1               |                                            |\n|                                        |   Host *                                   |\n|       Host q                           |       Compression yes                      |\n|           ViaJumpHost env1             |                                            |\n|           HostName node-1              |                                            |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host blog                                |\n|                                        |       User sa                              |\n|   Host m                               |                                            |\n|       User nineseconds                 |   Host me0                                 |\n|                                        |       HostName 10.10.0.0                   |\n|       % for i in range(2):             |       Protocol 2                           |\n|       Host e${i}                       |       ProxyCommand ssh -W %h:%p gw2        |\n|           HostName 10.10.0.${i}        |       User nineseconds                     |\n|           ViaJumpHost gw2              |                                            |\n|       % endfor                         |   Host me1                                 |\n|                                        |       HostName 10.10.0.1                   |\n|       Protocol 2                       |       Protocol 2                           |\n|                                        |       ProxyCommand ssh -W %h:%p gw2        |\n|   Host blog                            |       User nineseconds                     |\n|       User sa                          |                                            |\n|                                        |   Host *                                   |\n|                                        |       Compression yes                      |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n| ::                                     | ::                                         |\n|                                        |                                            |\n|   Compression yes                      |   Host blog                                |\n|                                        |       User sa                              |\n|  -Host \\*.my.domain                    |                                            |\n|       User nineseconds                 |   Host first.my.domain                     |\n|                                        |       Protocol 2                           |\n|       Host first                       |       User nineseconds                     |\n|       Host second                      |   Host second.my.domain                    |\n|           HostName 10.10.10.1          |       User nineseconds                     |\n|                                        |       Protocol 2                           |\n|                                        |       HostName 10.10.10.1                  |\n|       Protocol 2                       |                                            |\n|                                        |   Host *                                   |\n|   Host blog                            |       Compression yes                      |\n|       User sa                          |                                            |\n|                                        |                                            |\n+----------------------------------------+--------------------------------------------+\n\n\n.. _concierge: https://github.com/9seconds/concierge\n.. _SASS: http://sass-lang.com\n.. _Mako: http://www.makotemplates.org\n.. _Jinja2: http://jinja.pocoo.org\n\n.. |PyPI| image:: https://img.shields.io/pypi/v/bignole.svg\n    :target: https://pypi.python.org/pypi/bignole\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Small utility/daemon which is intended to help human to maintain their SSH configs",
    "version": "0.1.2",
    "project_urls": {
        "Tracker": "https://framagit.org/fiat-tux/bignole/-/issues",
        "repository": "https://framagit.org/fiat-tux/bignole"
    },
    "split_keywords": [
        "ssh",
        " concierge"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43f9e424d89ef3adb7614df2e0d92b1cd5232d9a994a3317cc4276f0bb09cd1b",
                "md5": "7748e0fb421a6616182b2e58e9d668f6",
                "sha256": "cde7d1de38cf601d98147371f5a583e25d7ad443bc37f3a35ea6ae86676f465c"
            },
            "downloads": -1,
            "filename": "bignole-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7748e0fb421a6616182b2e58e9d668f6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 19679,
            "upload_time": "2025-07-16T16:15:37",
            "upload_time_iso_8601": "2025-07-16T16:15:37.327460Z",
            "url": "https://files.pythonhosted.org/packages/43/f9/e424d89ef3adb7614df2e0d92b1cd5232d9a994a3317cc4276f0bb09cd1b/bignole-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b2dc12087d7b267d357df21bdf62355e37e60a18e4bf090a37c68380e83de6d",
                "md5": "89b9509d859ad85a293a73c908e37f30",
                "sha256": "e9d17b045640f8c449599a41d570f36599fc4df8c0e164b9185e3152b86ba8e9"
            },
            "downloads": -1,
            "filename": "bignole-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "89b9509d859ad85a293a73c908e37f30",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 22335,
            "upload_time": "2025-07-16T16:15:36",
            "upload_time_iso_8601": "2025-07-16T16:15:36.090433Z",
            "url": "https://files.pythonhosted.org/packages/9b/2d/c12087d7b267d357df21bdf62355e37e60a18e4bf090a37c68380e83de6d/bignole-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-16 16:15:36",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "bignole"
}
        
Elapsed time: 0.45206s