geniejars 0.2.9 → 0.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@
3
3
  "poolSize": 5,
4
4
  "poolPadding": 3,
5
5
  "homeBase": "/home",
6
- "managerUser": "flamsidoo",
6
+ "managerUser": "TYPE_USER_HERE",
7
7
  "managerGroup": "geniejars-mgr",
8
8
  "stateFile": "/tmp/geniejars-state.json",
9
9
  "lockFile": "/tmp/geniejars-state.lock",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geniejars",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "type": "module",
5
5
  "description": "Linux geniejars sandboxing — library and CLI for running processes as isolated system users",
6
6
  "main": "src/index.mjs",
@@ -14,7 +14,7 @@
14
14
  "files": [
15
15
  "src/",
16
16
  "script/",
17
- "geniejars.config.example.json",
17
+ "geniejars.config.template.json",
18
18
  "COMMON-ISSUES.md",
19
19
  "LICENSE.md",
20
20
  "JFILE.md"
@@ -317,7 +317,7 @@ try {
317
317
 
318
318
  if (cmd === 'preconfig') {
319
319
  const dest = path.resolve('geniejars.config.json')
320
- const src = path.resolve(__dirname, '../geniejars.config.example.json')
320
+ const src = path.resolve(__dirname, '../geniejars.config.template.json')
321
321
  try {
322
322
  await fs.access(dest)
323
323
  console.error('geniejars.config.json already exists — remove it first if you want to reset')