aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndreas Fuchs2020-11-29 22:59:23 -0500
committernotgne22020-12-02 10:24:23 -0700
commit7436f4265b760b87ef5763eb7833e7618c9c1d55 (patch)
tree4eca2bb7a65a7f97856ab3d223470f8b2ef226ea /src
parent65a2f1b18dc26e54b6ea1d59331c6873fc0e589b (diff)
Reinstate NoProfileUser
Seems to have been removed by mistake in the previous cleanup
Diffstat (limited to 'src')
-rw-r--r--src/utils/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/utils/mod.rs b/src/utils/mod.rs
index a960a14..4d9c68a 100644
--- a/src/utils/mod.rs
+++ b/src/utils/mod.rs
@@ -203,6 +203,7 @@ pub struct DeployDefs {
#[derive(Error, Debug)]
pub enum DeployDataDefsError {
#[error("Neither `user` nor `sshUser` are set for profile {0} of node {1}")]
+ NoProfileUser(String, String),
}
impl<'a> DeployData<'a> {