2021-02-20 15:13:56 +01:00
|
|
|
// Globals are things the user shouldn't change in config, but is good to not use inline constants for
|
2021-02-20 23:39:03 +01:00
|
|
|
const is_docker = require('is-docker');
|
|
|
|
const fss = require('fs');
|
|
|
|
const platform = `${is_docker() ? 'docker' : 'baremetal'}-${
|
|
|
|
fss.read_file_sync('/etc/os-release')
|
2021-02-20 15:13:56 +01:00
|
|
|
.toString()
|
2021-02-20 23:39:03 +01:00
|
|
|
.split('\n')
|
2021-03-13 06:01:04 +01:00
|
|
|
.find(x => x.startsWith('ID'))
|
2021-02-20 23:39:03 +01:00
|
|
|
.replace('ID=','')
|
|
|
|
}`;
|
2021-02-20 15:13:56 +01:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
data_directories: {
|
2021-02-20 23:39:03 +01:00
|
|
|
packages: 'packages',
|
|
|
|
jobs: 'jobs'
|
2021-02-20 15:13:56 +01:00
|
|
|
},
|
2021-02-20 23:39:03 +01:00
|
|
|
version: require('../package.json').version,
|
2021-02-20 15:13:56 +01:00
|
|
|
platform,
|
2021-02-20 23:39:03 +01:00
|
|
|
pkg_installed_file: '.ppman-installed' //Used as indication for if a package was installed
|
2021-03-13 06:01:04 +01:00
|
|
|
};
|