aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-09-12[#201] Deduce profile directory during activationRoman Melnikov1-0/+1
Problem: Since https://github.com/NixOS/nix/pull/5226 nix profiles for users are stored in 'XDG_STATE_HOME' or 'HOME' directory. However, 'deploy-rs' still expects profiles to be present in '/nix/var/nix/profiles/per-user'. As a result, an attempt to deploy a profile with newer nix may fail with an error about non-existing files. Solution: Instead of deducing the profile path prior to ssh'ing and actual activation, deduce the path to the profile during as a part of 'activate-rs' invocation. Now if the profile path is not specified explicitly as an attribute in profile within the deploy flake, the path to the profile is determined based on the user to which the profile belongs and on the values of 'XDG_STATE_HOME' and 'HOME' variables. Additionally, if the old profile directory (in '/nix/var/nix/profiles/per-user') for a given user already exists, it is used instead for the sake of backward compatibility.
2023-04-20[Chore] Handle 'temp_path' as an actual 'Path' instead of 'String'Roman Melnikov1-1/+1
Problem: 'temp_path' and 'lock_path' are handled as 'String'. This can be a problem when the 'temp_path' directory is a symlink on the target system, e.g. this is the case with the default '/tmp' and macOS, where this directory is actually a symlink to '/private/tmp'. Solution: Handle 'temp_path' and 'lock_path' as actual Paths. Also, canonicalize 'temp_path' to avoid canary file path mismatches when checking filesystem events. As a side effect, also update the 'notify' dependency to the latest stable version.
2022-01-13optimize release build for sizeTimothy DeHerrera1-2/+7
2021-07-29update tokioTimothy DeHerrera1-1/+1
2021-01-26changed: sort Cargo.tomlBernardo Meurer1-10/+10
2021-01-26changed: remove 2015-style extern crateBernardo Meurer1-3/+2
2021-01-08Restructure projectnotgne21-6/+2
2020-12-30Modify activation logic to keep SSH connection alive for magic-rollback and ↵notgne21-0/+1
avoid forking or disconnecting std{out,err}
2020-12-27Replace logger, add more logging options including filesnotgne21-1/+1
2020-12-15Update tokio & pull in notify, instead of inotifyAndreas Fuchs1-2/+2
The notify crate is cross-platform, and the newer tokio has some bug fixes. Let's use those.
2020-12-15Debump the smol_str version to 0.1.16 to build on rust 1.45.2 (#28)Andreas Fuchs1-0/+5
* Debump the smol_str version to 0.1.16 to build on rust 1.45.2 Rust 1.45.2 is what ships in the 20.09 release, and smol_str 0.1.17 is incompatible with it. * Clarify version bounds on the smol_str dependency
2020-11-29Use crude Nix parsing for parsing the flake pathnotgne21-0/+1
2020-11-22Partially add deployment confirmation utilities (for #4)notgne21-0/+2
2020-10-29Make all the errors work correctly (I am so so sorry)notgne21-0/+2
2020-10-29Fix authors list in package definitionnotgne21-1/+1
2020-10-13Auto rollback if deployment is not confirmednotgne21-1/+4
2020-09-29Add license information, reformat Nix files, clean upnotgne21-1/+5
2020-09-28use separate binary for activation, more cleanupnotgne21-0/+8