]> git.proxmox.com Git - proxmox-backup.git/blame_incremental - src/buildcfg.rs
rrd: pack multiple rrd values into th estat list
[proxmox-backup.git] / src / buildcfg.rs
... / ...
CommitLineData
1//! Exports configuration data from the build system
2
3/// The configured configuration directory
4pub const CONFIGDIR: &str = "/etc/proxmox-backup";
5pub const JS_DIR: &str = "/usr/share/javascript/proxmox-backup";
6
7/// Prepend configuration directory to a file name
8///
9/// This is a simply way to get the full path for configuration files.
10/// #### Example:
11/// ```
12/// # #[macro_use] extern crate proxmox_backup;
13/// let cert_path = configdir!("/proxy.pfx");
14/// ```
15#[macro_export]
16macro_rules! configdir {
17 ($subdir:expr) => (concat!("/etc/proxmox-backup", $subdir))
18}