Repait module.desc

- a handful of modules had an unused *requires* key in module.desc;
  this is probably from previous intentions around
  prerequisites-testing. Since the settings were empty anyway,
  they have been removed.
- [unpackfs] Compacted the way *requiredModules* list is written
This commit is contained in:
Adriaan de Groot 2020-08-12 09:36:30 +02:00
parent efd7145f76
commit f73f94da27
5 changed files with 1 additions and 6 deletions

View File

@ -2,5 +2,4 @@
type: "job"
name: "displaymanager"
interface: "python"
requires: []
script: "main.py"

View File

@ -2,6 +2,5 @@
type: "job"
name: "hwclock"
interface: "python"
requires: []
script: "main.py"
noconfig: true

View File

@ -2,6 +2,5 @@
type: "job"
name: "networkcfg"
interface: "python"
requires: []
script: "main.py"
noconfig: true

View File

@ -2,5 +2,4 @@
type: "job"
name: "services-systemd"
interface: "python"
requires: []
script: "main.py"

View File

@ -4,5 +4,4 @@ type: "job"
name: "unpackfs"
interface: "python"
script: "main.py"
requiredModules:
- mount
requiredModules: [ mount ]