Documentation ¶
Index ¶
- func CalculateNetworkAndBroadcast(ipAddress, netmask string) (string, string, int, error)
- func NewExecProcess(cmd *exec.Cmd, keepAttached bool, quiet bool, logger boshlog.Logger) *execProcess
- type CmdRunner
- type Command
- type ConvergeFileContentsOpts
- type ExecError
- type File
- type FileSystem
- type Process
- type ReadOpts
- type Result
- type StatOpts
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CmdRunner ¶
type CmdRunner interface { // RunComplexCommand returns error as nil: // - command runs and exits with a zero exit status // RunComplexCommand returns error: // - command runs and exits with a non-zero exit status // - command does not run RunComplexCommand(cmd Command) (stdout, stderr string, exitStatus int, err error) RunComplexCommandAsync(cmd Command) (Process, error) RunCommand(cmdName string, args ...string) (stdout, stderr string, exitStatus int, err error) RunCommandQuietly(cmdName string, args ...string) (stdout, stderr string, exitStatus int, err error) RunCommandWithInput(input, cmdName string, args ...string) (stdout, stderr string, exitStatus int, err error) CommandExists(cmdName string) (exists bool) }
func NewExecCmdRunner ¶
type Command ¶
type Command struct { Name string Args []string Env map[string]string UseIsolatedEnv bool WorkingDir string // On Linux when enabled inherits process group KeepAttached bool // Don't echo stdout/stderr Quiet bool Stdin io.Reader // Full stdout and stderr will be captured to memory // and returned in the Result unless custom Stdout/Stderr are specified. Stdout io.Writer Stderr io.Writer }
type ConvergeFileContentsOpts ¶
type ConvergeFileContentsOpts struct {
DryRun bool
}
type ExecError ¶
func NewExecError ¶
func (ExecError) ShortError ¶
ShortError returns an error message that has stdout/stderr truncated.
type File ¶
type File interface { io.ReadWriteCloser ReadAt([]byte, int64) (int, error) WriteAt([]byte, int64) (int, error) Seek(int64, int) (int64, error) Stat() (os.FileInfo, error) Name() string }
File is a subset of os.File
type FileSystem ¶
type FileSystem interface { HomeDir(username string) (path string, err error) ExpandPath(path string) (expandedPath string, err error) // MkdirAll will not change existing dir permissions // if dir exists and has different permissions MkdirAll(path string, perm os.FileMode) error RemoveAll(fileOrDir string) error Chown(path, username string) error Chmod(path string, perm os.FileMode) error OpenFile(path string, flag int, perm os.FileMode) (File, error) WriteFileString(path, content string) error WriteFile(path string, content []byte) error WriteFileQuietly(path string, content []byte) error ConvergeFileContents(path string, content []byte, opts ...ConvergeFileContentsOpts) (written bool, err error) ReadFileString(path string) (content string, err error) ReadFile(path string) (content []byte, err error) ReadFileWithOpts(path string, opts ReadOpts) (content []byte, err error) FileExists(path string) bool Stat(path string) (os.FileInfo, error) StatWithOpts(path string, opts StatOpts) (os.FileInfo, error) Lstat(path string) (os.FileInfo, error) Rename(oldPath, newPath string) error // After Symlink file at newPath will be pointing to file at oldPath. // Symlink call will remove file at newPath if one exists // to make newPath a symlink to the file at oldPath. Symlink(oldPath, newPath string) error ReadAndFollowLink(symlinkPath string) (targetPath string, err error) Readlink(symlinkPath string) (targetPath string, err error) CopyFile(srcPath, dstPath string) error CopyDir(srcPath, dstPath string) error // Returns *unique* temporary file/dir with a custom prefix TempFile(prefix string) (file File, err error) TempDir(prefix string) (path string, err error) ChangeTempRoot(path string) error Glob(pattern string) (matches []string, err error) RecursiveGlob(pattern string) (matches []string, err error) Walk(root string, walkFunc filepath.WalkFunc) error }
func NewOsFileSystem ¶
func NewOsFileSystem(logger boshlog.Logger) FileSystem
func NewOsFileSystemWithStrictTempRoot ¶
func NewOsFileSystemWithStrictTempRoot(logger boshlog.Logger) FileSystem
Source Files ¶
Click to show internal directories.
Click to hide internal directories.