|
|
|
@ -76,6 +76,13 @@ func (m *Machine) WriteStringFile(value string, name string, args ...any) error
|
|
|
|
|
return err |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// MkdirAll creates directories relative to the machine's config directory
|
|
|
|
|
func (m *Machine) MkdirAll(name string, args ...any) error { |
|
|
|
|
fullName := m.getFilename(name, args...) |
|
|
|
|
|
|
|
|
|
return m.zone.zones.MkdirAll(fullName) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
func (m *Machine) getFilename(name string, args ...any) string { |
|
|
|
|
if len(args) > 0 { |
|
|
|
|
name = fmt.Sprintf(name, args...) |
|
|
|
|