tftp.tftproot was also avlailable under paths.tftdir, removed paths.tftpdir warewulfconf.datastore was also availbale under paths.datadir, remove paths.datadir Signed-off-by: Christian Goll <cgoll@suse.com>
11 lines
328 B
Go
11 lines
328 B
Go
package config
|
|
|
|
// A MountEntry represents a bind mount that is applied to a container
|
|
// during exec and shell.
|
|
type MountEntry struct {
|
|
Source string `yaml:"source"`
|
|
Dest string `yaml:"dest,omitempty"`
|
|
ReadOnly bool `yaml:"readonly,omitempty"`
|
|
Options string `yaml:"options,omitempty"` // ignored at the moment
|
|
}
|