| 15 | ) |
| 16 | |
| 17 | type GenericScript struct { |
| 18 | fs boshsys.FileSystem |
| 19 | runner boshsys.CmdRunner |
| 20 | |
| 21 | tag string |
| 22 | path string |
| 23 | |
| 24 | stdoutLogPath string |
| 25 | stderrLogPath string |
| 26 | |
| 27 | env map[string]string |
| 28 | } |
| 29 | |
| 30 | func NewScript( |
| 31 | fs boshsys.FileSystem, |
nothing calls this directly
no outgoing calls
no test coverage detected