aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Fontaine2022-01-26 22:10:49 -0500
committerAndrew Fontaine2022-01-28 16:18:12 -0500
commit874af9b05bec0bd73a333166a8b5291ecb1c0e3e (patch)
tree3ec4c68c7a2bb93baea99c91c272c592eac3447a /src
parent0ac333cdc03407538b5b19d60a8e7c64588490fb (diff)
Add custom sudo command support
This is useful for nodes that utilize `doas` instead of `sudo`.
Diffstat (limited to 'src')
-rw-r--r--src/cli.rs4
-rw-r--r--src/data.rs2
-rw-r--r--src/lib.rs10
3 files changed, 15 insertions, 1 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 61890e4..cc5a3ac 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -89,6 +89,9 @@ pub struct Opts {
/// Revoke all previously succeeded deploys when deploying multiple profiles
#[clap(long)]
rollback_succeeded: Option<bool>,
+ /// Which sudo command to use. Must accept at least two arguments: user name to execute commands as and the rest is the command to execute
+ #[clap(long)]
+ sudo: Option<String>,
}
/// Returns if the available Nix installation supports flakes
@@ -635,6 +638,7 @@ pub async fn run(args: Option<&ArgMatches>) -> Result<(), RunError> {
temp_path: opts.temp_path,
confirm_timeout: opts.confirm_timeout,
dry_activate: opts.dry_activate,
+ sudo: opts.sudo,
};
let supports_flakes = test_flake_support().await.map_err(RunError::FlakeTest)?;
diff --git a/src/data.rs b/src/data.rs
index 6fe7f75..b00a4d0 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -28,6 +28,8 @@ pub struct GenericSettings {
pub temp_path: Option<String>,
#[serde(rename(deserialize = "magicRollback"))]
pub magic_rollback: Option<bool>,
+ #[serde(rename(deserialize = "sudo"))]
+ pub sudo: Option<String>,
}
#[derive(Deserialize, Debug, Clone)]
diff --git a/src/lib.rs b/src/lib.rs
index 981ec1e..39bc3aa 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -161,6 +161,7 @@ pub struct CmdOverrides {
pub magic_rollback: Option<bool>,
pub temp_path: Option<String>,
pub confirm_timeout: Option<u16>,
+ pub sudo: Option<String>,
pub dry_activate: bool,
}
@@ -350,7 +351,7 @@ impl<'a> DeployData<'a> {
let profile_path = self.get_profile_path()?;
let sudo: Option<String> = match self.merged_settings.user {
- Some(ref user) if user != &ssh_user => Some(format!("sudo -u {}", user)),
+ Some(ref user) if user != &ssh_user => Some(format!("{} {}", self.get_sudo(), user)),
_ => None,
};
@@ -392,6 +393,13 @@ impl<'a> DeployData<'a> {
};
Ok(profile_user)
}
+
+ fn get_sudo(&'a self) -> String {
+ return match self.merged_settings.sudo {
+ Some(ref x) => x.clone(),
+ None => "sudo -u".to_string()
+ };
+ }
}
pub fn make_deploy_data<'a, 's>(