mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
clean up warnings
This commit is contained in:
parent
2ef91116ee
commit
a092463f77
@ -794,18 +794,20 @@ impl Settings {
|
|||||||
/// `/Users/<user>/Library/Application Support/org.Veilid.Veilid`
|
/// `/Users/<user>/Library/Application Support/org.Veilid.Veilid`
|
||||||
///
|
///
|
||||||
pub fn get_default_config_path() -> PathBuf {
|
pub fn get_default_config_path() -> PathBuf {
|
||||||
let default_path = PathBuf::from("/etc/veilid-server/veilid-server.conf");
|
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
{
|
||||||
|
let default_path = PathBuf::from("/etc/veilid-server/veilid-server.conf");
|
||||||
if default_path.exists() {
|
if default_path.exists() {
|
||||||
return default_path;
|
return default_path;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ProjectDirs::from("org", "Veilid", "Veilid")
|
ProjectDirs::from("org", "Veilid", "Veilid")
|
||||||
.map(|dirs| dirs.config_dir().join("veilid-server.conf"))
|
.map(|dirs| dirs.config_dir().join("veilid-server.conf"))
|
||||||
.unwrap_or_else(|| PathBuf::from("./veilid-server.conf"))
|
.unwrap_or_else(|| PathBuf::from("./veilid-server.conf"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn get_or_create_private_directory<P: AsRef<Path>>(path: P, group_read: bool) -> bool {
|
fn get_or_create_private_directory<P: AsRef<Path>>(path: P, group_read: bool) -> bool {
|
||||||
let path = path.as_ref();
|
let path = path.as_ref();
|
||||||
if !path.is_dir()
|
if !path.is_dir()
|
||||||
@ -817,6 +819,7 @@ impl Settings {
|
|||||||
true
|
true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(dead_code)]
|
||||||
fn get_or_create_default_directory(subpath: &str) -> PathBuf {
|
fn get_or_create_default_directory(subpath: &str) -> PathBuf {
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user