diff options
author | 2024-12-14 19:29:46 -0800 | |
---|---|---|
committer | 2024-12-14 19:29:46 -0800 | |
commit | 30aba8ae9dd8dc0acc66c728f5e3e6b918b074b7 (patch) | |
tree | 55dfd2880a4c31fcd2a6c74daaa7b2188231f369 | |
parent | 17b50c1f823a1fd4fad052684bb9ced6f8d179f4 (diff) | |
download | restic-operator-30aba8ae9dd8dc0acc66c728f5e3e6b918b074b7.tar.gz restic-operator-30aba8ae9dd8dc0acc66c728f5e3e6b918b074b7.tar.zst restic-operator-30aba8ae9dd8dc0acc66c728f5e3e6b918b074b7.zip |
fix: change `PASSWORD_FILE_PATH` to match volumes
-rw-r--r-- | src/resticprofile/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resticprofile/mod.rs b/src/resticprofile/mod.rs index 0de6a11..c58200f 100644 --- a/src/resticprofile/mod.rs +++ b/src/resticprofile/mod.rs @@ -15,7 +15,7 @@ use crate::{ pub mod config; -const PASSWORD_FILE_PATH: &str = "/resticprofile/password"; +const PASSWORD_FILE_PATH: &str = "/resticprofile/password.txt"; #[derive(Debug, Clone)] pub struct ResticProfile { |