github.com/kardianos/nomad@v0.1.3-0.20151022182107-b13df73ee850/client/executor/setuid_windows.go (about)

     1  package executor
     2  
     3  // SetUID changes the Uid for this command (must be set before starting)
     4  func (c *cmd) SetUID(userid string) error {
     5  	// TODO implement something for windows
     6  	return nil
     7  }
     8  
     9  // SetGID changes the Gid for this command (must be set before starting)
    10  func (c *cmd) SetGID(groupid string) error {
    11  	// TODO implement something for windows
    12  	return nil
    13  }