disnix icon indicating copy to clipboard operation
disnix copied to clipboard

Disnix: A Nix-based distributed service deployment tool

Results 12 disnix issues
Sort by recently updated
recently updated
newest added

"Example 4.6. Simplified intra-dependency composition for the StaffTracker" from section "4.3.3. Intra-dependency composition" appears to be missing some code and is not a well-formed nix expression on its own. The...

In Disnix User's Guide "11.2. Deploying a system locally" section, ``` $ export DISNIX_CLIENT_INTERFACE=disnix-runactivity ``` should be ``` $ export DISNIX_CLIENT_INTERFACE=disnix-run-activity ```

Shellcheck does static analysis to produce style, info, warning, and error findings on shell scripts, and provides generally good explanations of why a particular finding could be or is an...

Under `A.2. Utilities`, [`disnix-deploy`](https://hydra.nixos.org/build/203347995/download/2/manual/#sec-disnix-deploy)'s `DESCRIPTION` section describes `disnix-migrate` instead of `disnix-deploy`. Noticed this while I was reading the [online manual](http://hydra.nixos.org/job/disnix/disnix-trunk/tarball/latest/download-by-type/doc/manual) linked in README.md.

See [scripts/disnix-ssh-client.in#L481](https://github.com/svanderburg/disnix/blob/7abec7c0bd28d505eee0cd2ff7380ed825ac76e6/scripts/disnix-ssh-client.in#L481). I haven't actually encountered or tried to encounter this issue.

Note the mismatch between the name of the job and the variable it is referred to as "job" vs "jobXX". ``` # services.nix job = { name = "jobXX"; pkg...

Well... basically as it says? The #nixos channel moves far too quickly; any question gets lost long before anyone who knows anything about Disnix might be able to help. #disnix...

So I installed things on a Ubuntu 14.04 LTS VM: ``` bash sudo apt-get update -y sudo apt-get upgrade -y sudo apt-get install htop curl -y curl https://nixos.org/nix/install | sh...

Not sure whether to file that against `disnix` or `dysnomia`. Also I should warn in advance that I'm only one week into the Nix world and clearly not Nix-minded enough...

Disnix currently does not activate services in the order established by dependsOn, but it should. For instance, if a service `a` dependsOn `b`, `b` should be activated before `a`. Due...