fix: set a root for the ssh verification.

This commit is contained in:
silver 2023-08-19 20:47:58 +01:00
parent 82d7ca48bb
commit 8bec5e87b5
3 changed files with 9 additions and 2 deletions

View file

@ -188,6 +188,7 @@ pub struct Config {
pub mail_smtp: String,
pub mail_user: String,
pub mail_pass: String,
pub ssh_root: String,
}
pub fn get_config() -> Config {
@ -205,6 +206,7 @@ pub fn get_config() -> Config {
mail_smtp: "".to_string(),
mail_user: "".to_string(),
mail_pass: "".to_string(),
ssh_root: "/skynet_old/home".to_string(),
};
if let Ok(x) = env::var("LDAP_HOST") {
@ -237,6 +239,9 @@ pub fn get_config() -> Config {
if let Ok(x) = env::var("EMAIL_PASS") {
config.mail_pass = x.trim().to_string();
}
if let Ok(x) = env::var("SSH_ROOT") {
config.ssh_root = x.trim().to_string();
}
config
}