19 lines
375 B
JavaScript
19 lines
375 B
JavaScript
|
const tmpdir_config = {
|
||
|
type: 'checks',
|
||
|
hosts: ['core', 'localhost'],
|
||
|
steps: [
|
||
|
{
|
||
|
type: 'fs.directory',
|
||
|
host: 'core',
|
||
|
path: '/tmp/glmdev',
|
||
|
},
|
||
|
{
|
||
|
type: 'fs.directory',
|
||
|
host: 'localhost',
|
||
|
path: '/tmp/glmdev',
|
||
|
},
|
||
|
],
|
||
|
}
|
||
|
|
||
|
module.exports = exports = tmpdir_config
|