]> git.proxmox.com Git - proxmox-backup.git/blob - src/buildcfg.rs
src/bin/proxmox-backup-client.rs: use SnapshotListItem
[proxmox-backup.git] / src / buildcfg.rs
1 //! Exports configuration data from the build system
2
3 /// The configured configuration directory
4 pub const CONFIGDIR: &str = "/etc/proxmox-backup";
5 pub 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]
16 macro_rules! configdir {
17 ($subdir:expr) => (concat!("/etc/proxmox-backup", $subdir))
18 }