Skip to content

Introducing tori

tori is a tool to track your personal systems’ configurations and replicate them.

For the past 5 months, I’ve been simultaneously using and writing it to manage my main machine’s configuration. By “manage the configuration” what I mean is keeping track of installed packages, configuration files, symlinks, and other settings that can be queried and set through command line interfaces.

After installing a given system, I wanted to get it to the same configuration state I was used to, or to a certain configuration specific to its purpose. Just copying backups would certainly be a very manual task, namely because:

Configuring a system can become a very vague process as you start to lose track of where the changes are being made and what is the specific configuration needed for something to work.

Every time you change some configuration file, every time you create a symlink somewhere, that’s all having effects on the system that you may expect to be there in the future, but you may not remember how to accomplish that. This drift between what you have and what you are able to replicate only grows as you keep using your system.

To get a better idea, see the code snippet below. It’s from the main file that I use to manage all function calls:

  xbps_get_many packages

  check_service dbus
  check_group audio
  check_group video

  copy dhcpcd.conf /etc/dhcpcd.conf
  place kernel-cmd-line.conf /etc/dracut.conf.d
  check_link /etc/localtime /usr/share/zoneinfo/America/Sao_Paulo

  get_nix tailspin tspin
  get_cargo taplo-cli taplo --locked
  get_bun bash-language-server
  get_bin 'https://raw.githubusercontent.com/hackerb9/lsix/master/lsix' lsix

  check_gsettings gtk-theme 'Plata-Noir'
  check_gsettings font-name 'Mononoki Nerd Font Regular'

What is happening here:

  1. A file named packages containing package names is parsed and all packages are queried and installed by the xbps package manager, if not already installed
  2. Service dbus is enabled if not already enabled
  3. The user is added to groups audio and video, unless already in them
  4. File dhcpcd.conf from the configuration directory’s base directory is checked against the one in the passed path and overwrites it if the user chooses to do so
  5. File kernel-cmd-line.conf from the configuration directory’s base directory is copied into the passed path. If the file already exists or differs, tori will present an error
  6. A symlink is checked to be on /etc/localtime pointing to the passed path. If it doesn’t, it is created or fixed
  7. If not installed, a few packages are installed using different package managers: tailspin, taplo and bash-language-server
  8. If absent, an executable for lsix is downloaded from a URL and placed at ~/.local/bin
  9. Some gsettings values are read and set if they differ: gtk-theme and font-name

Notice how everything is conditioned to the system not already presenting that state? tori aims to be idempotent. Running it twice should do nothing the second time it runs so you can run it multiple times while making changes without any doubled effects.

I mentioned a base directory. This is what a sample tori directory would look like in its present state:

.
├── base
│   ├── dhcpcd.conf
│   ├── kernel-cmd-line.conf
│   ├── packages
│   └── vars.sh
├── .bkp
│   ├── canonical
│   │   ├── etc
│   │   └── opt
│   └── ephemeral
│       └── etc
├── src
│   ├── checks.sh
│   ├── copy.sh
│   └── get.sh
└── strap

What you are seeing in this sample of the directory are the following files and directories:

Because I developed tori for my own purposes initially, I didn’t really care to separate the actual source files from the context-sensitive data. While a mistake from a higher level, it allowed me to just keep developing the whole system configuration and the code that tracked it from a single, version-controlled location, amounting to very little complexity. I can’t deny to have enjoyed it so far, but going forward that is going to change.

Currently, tori is able to install several package managers and their packages, including xbps, apt, nix, opam, stack, cargo, go, sdkmanager, npm, flatpak and pipx.

It can also perform several other tasks:

The application slowly grew to accommodate many of my needs, but I also made it very hard to share with the world in the process, since I never really meant to go public with it.

Portability issues

Despite it being very useful to me in its current state and still being something I actively use every day, a lot of it is hard-coded for my very personal use. It was not written with portability in mind and therefore requires a lot of source-code editing to use in a different system.

For instance, when I switched from Debian to Void Linux, most of it broke. I certainly would not expect the package list to be compatible between them, but I realized at that point how tightly it was coupled to Debian.

When I started delving deeper into FreeBSD and setting up the system, I kept reaching out to something like tori. But it wasn’t there, and it wouldn’t work even if it were.

Something that certainly influenced my desire to write tori was my experience using NixOS, which was full of mixed feelings, but undeniably had good feelings that stuck.

I really liked being able to manage the system configuration and packages from a single file. But, at the same time, I felt it was overkill. It was limiting because most of the time you were forced to configure things through its interfaces. It was basically incompatible with what every other Unix system expects, and therefore what people who write software for these systems also expect.

I appreciated bringing the system configuration to a centralized file, but I certainly did not want to manage all my ~/.config configuration files from that same place. After writing tori, I can choose what to place under its tracking and what not to. Third-party software still works as both me and its creators expect it to, instead of my system breaking things and needing them to work the way it expects.

Glad to reinvent the wheel

While I understand there are very mature and powerful tools to manage a system’s state and reproduce it, I am aiming here for a much simpler use case. I have no intention to see it used in enterprise or distributed systems. It is all about managing how your personal computing is set up and having a backup of how you did it.

What I need is not a tool that can orchestrate a fleet of containers running a given configuration. What I need is a tool that can run in a bare system that just got installed and get it to a state that feels useful to me. I do not want it to run instructions over a range of IPs, I just want to be able to check at any time if the system state has diverged from the configuration I am using to track it. I wanted a tool that would help me develop a different habit when I need to make system-level changes.

And finally, I suppose I just really wanted to build this. I really enjoy the process of configuring operating systems and learning how they work and differ. And I really wanted to learn more about portable, POSIX-compatible shell scripting.

So I decided to rewrite it with portability in mind. I am doing this rewrite in FreeBSD, to put the portability to the test. Once some basic functionality is done, the next step will be bringing it to Void Linux, Debian and NetBSD.

tori is a bird that has just hatched, so everything is still very, very crude. At this stage, the docs often show intentions rather than implemented functionality. Still, because it is something I’ve come to depend on, it has this rewarding sense of usefulness behind it.

If it sounds interesting to you, take a look. You can follow development at the main Git repository in BSD.Cafe’s Git forge or through its mirrors on GitHub and Codeberg. Going forward, I will also probably be talking a lot about it on my Mastodon profile.