2019-02-16 11:28:50 +00:00
|
|
|
//! Exports configuration data from the build system
|
|
|
|
|
|
|
|
/// The configured configuration directory
|
2019-09-11 10:06:59 +00:00
|
|
|
pub const CONFIGDIR: &str = "/etc/proxmox-backup";
|
2019-09-09 08:51:08 +00:00
|
|
|
pub const JS_DIR: &str = "/usr/share/javascript/proxmox-backup";
|
2019-02-04 14:13:03 +00:00
|
|
|
|
2020-11-02 07:50:56 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! PROXMOX_BACKUP_RUN_DIR_M { () => ("/run/proxmox-backup") }
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! PROXMOX_BACKUP_LOG_DIR_M { () => ("/var/log/proxmox-backup") }
|
|
|
|
|
|
|
|
/// namespaced directory for in-memory (tmpfs) run state
|
|
|
|
pub const PROXMOX_BACKUP_RUN_DIR: &str = PROXMOX_BACKUP_RUN_DIR_M!();
|
|
|
|
/// namespaced directory for persistent logging
|
|
|
|
pub const PROXMOX_BACKUP_LOG_DIR: &str = PROXMOX_BACKUP_LOG_DIR_M!();
|
|
|
|
|
|
|
|
/// logfile for all API reuests handled by the proxy and privileged API daemons
|
|
|
|
pub const API_ACCESS_LOG_FN: &str = concat!(PROXMOX_BACKUP_LOG_DIR_M!(), "/api/access.log");
|
2020-10-16 09:06:46 +00:00
|
|
|
|
2019-02-16 11:28:50 +00:00
|
|
|
/// Prepend configuration directory to a file name
|
|
|
|
///
|
|
|
|
/// This is a simply way to get the full path for configuration files.
|
|
|
|
/// #### Example:
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate proxmox_backup;
|
|
|
|
/// let cert_path = configdir!("/proxy.pfx");
|
|
|
|
/// ```
|
2019-02-04 14:13:03 +00:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! configdir {
|
2019-09-09 08:51:08 +00:00
|
|
|
($subdir:expr) => (concat!("/etc/proxmox-backup", $subdir))
|
2019-02-04 14:13:03 +00:00
|
|
|
}
|