Closed jahvon closed 8 months ago
The type key is kind of unnecessary. An exec defined as:
type
- verb: setup name: drive-mount tags: - linux description: Mount a drive on the local machine spec: type: exec: file: //scripts/mount-drive.sh
Can be simplified to
- verb: setup name: drive-mount tags: - linux description: Mount a drive on the local machine spec: exec: file: //scripts/mount-drive.sh
Better yet, if spec can be dropped, that would simplify things even more
spec
- verb: setup name: drive-mount tags: - linux description: Mount a drive on the local machine exec: file: //scripts/mount-drive.sh
Need to play around with yaml tags and structs
This has been fixed. Config is slightly different but no longer an issue
Enhancement Summary
The
type
key is kind of unnecessary. An exec defined as:Can be simplified to
Better yet, if
spec
can be dropped, that would simplify things even moreAdditional context
Need to play around with yaml tags and structs