mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 08:25:43 +03:00
14 lines
364 B
Go
14 lines
364 B
Go
package executor
|
|
|
|
// SetUID changes the Uid for this command (must be set before starting)
|
|
func (c *cmd) SetUID(userid string) error {
|
|
// TODO implement something for windows
|
|
return nil
|
|
}
|
|
|
|
// SetGID changes the Gid for this command (must be set before starting)
|
|
func (c *cmd) SetGID(groupid string) error {
|
|
// TODO implement something for windows
|
|
return nil
|
|
}
|