Skip to main content

fabsync

Overview

This is a file-syncing tool for Fabric. It's almost as straightforward to use as rsync, but with some of the features that will be familiar from deployment automation tools like Ansible.

Key points:

  • Source files are kept in a simple directory tree, as if you were going to rsync them.
  • Metadata—such as ownership and permissions—is configured in TOML files throughout the tree.
  • Rendering functions can be configured to transform file contents. You can hook these up to template engines or anything else.
  • Paths and tags can be used to sync a subset of the file tree.

The most important thing to note is that this is a library, not a framework. It does one simple thing, which you're welcome to integrate into your own deployment scheme any way you like. For illustration purposes, here's a fragment of a hypothetical fabfile.py that you might write:

import io
from pathlib import Path
from typing import Any, Mapping

from fabric import Connection, task
import fabsync
import pystache
import tomli


def _mustache_renderer(conn: Connection) -> fabsync.Renderer:
    try:
        result = conn.get('/usr/local/etc/fabsync.toml', io.BytesIO())
    except FileNotFoundError:
        host = {}
    else:
        host = tomli.loads(result.local.getvalue().decode())

    renderer = pystache.Renderer(escape=lambda s: s)

    def render(path: Path, vars: Mapping[str, Any]) -> str:
        with path.open('rt') as f:
            return renderer.render(f.read(), host | vars)

    return render


@task(iterable=['tag'], incrementable=['verbose'])
def sync(conn, subpath=None, tag=None, verbose=0):
    root = fabsync.load('files', '/')
    selector = fabsync.ItemSelector.new(subpath=subpath, tags=tag)
    renderers = {'mustache': _mustache_renderer(conn)}

    dry_run = conn['run']['dry']

    for result in fabsync.isync(conn, root, selector, renderers, dry_run=dry_run):
        print(f"{result.path}{' [modified]' if result.modified else ''}")
        if verbose > 0 and result.diff:
            print(result.diff.decode())

Of course you may also wish to save the results and use them to decide what other actions to perform (e.g. restarting services).

Because we're just dealing with files, fabsync can offer a few other convenience functions, including one that renders the source tree into human-readable rows. If you rendered this with PrettyTable, it might look like this:

+-----------------------------------+------+-------+------------+----------+-------+--------+
| Path                              | User | Group | Mode       | Renderer | Diff? | Tags   |
+-----------------------------------+------+-------+------------+----------+-------+--------+
| /usr/                             |      |       |            |          |       |        |
| /usr/local/                       |      |       |            |          |       |        |
| /usr/local/etc/                   |      |       |            |          |       |        |
| /usr/local/etc/mail/              |      |       |            |          |       | mail   |
| /usr/local/etc/mail/smtpd.conf    |      |       |            |          |       | mail   |
| /usr/local/etc/rc.d/              | root | wheel |            |          |       |        |
| /usr/local/etc/rc.d/restic-server | root | wheel | -rwxr-xr-x |          |       | restic |
| /usr/local/etc/smb4.conf          |      |       |            |          |       |        |
| /usr/local/etc/wireguard/         |      |       | drwx------ |          |       | wg     |
| /usr/local/etc/wireguard/wg0.conf |      |       | -rw------- | mustache |       | wg     |
| /usr/local/utils/                 |      |       |            |          |       |        |
+-----------------------------------+------+-------+------------+----------+-------+--------+

Refer to the documentation for more details and a step-by-step guide.

Contributing

I wrote this for my own purposes and published it primarily to enforce the discipline of comprehensive documentation and tests. It's deliberately narrow in scope. New features are not out of the question, but mostly only those that would be considerably more effort to implement externally.

Feel free to reach out with bug reports or suggestions. And note the Unlicense, which means you can also just take the code and do what you like with it.

License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to http://unlicense.org/

Release files for fabsync 1.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for fabsync 1.2.0
File Size Uploaded
fabsync-1.2.0.tar.gz 31.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for fabsync 1.2.0
File Interpreter ABI Platform
fabsync-1.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 49.6 kB

Release files / fabsync-1.2.0.tar.gz

Download URL fabsync-1.2.0.tar.gz
Size 31.2 kB
Tags Source
SHA-256 checksum
How to use checksums
fdedca6010bccdec9548a84428ec9fb1624d18e5fbc652519d62f366d8a648a9
BLAKE2b-256 checksum
How to use checksums
9ae59e0aca5ff922e48c805cafc88f1dc71a599ae9bb040c5509b2b715bd0f4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via python-httpx/0.24.0

Release files / fabsync-1.2.0-py3-none-any.whl

Download URL fabsync-1.2.0-py3-none-any.whl
Size 18.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
4fd050b12a1b3a20c3b0d674792fd3cf29b94b84667df0279f45fb75fe2170d8
BLAKE2b-256 checksum
How to use checksums
9c8ed5b186aaeeba404c4e78bc408fcd8da3ef654b26671b538b08b70d1c1b51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via python-httpx/0.24.0

Release history Release notifications | RSS feed

This release

1.2.0 This release

2 release files

1.1.0

2 release files

1.0.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page