github.com/dkerwin/nomad@v0.3.3-0.20160525181927-74554135514b/client/driver/executor/executor_basic.go (about)

     1  // +build !linux
     2  
     3  package executor
     4  
     5  import cgroupConfig "github.com/opencontainers/runc/libcontainer/configs"
     6  
     7  func (e *UniversalExecutor) configureChroot() error {
     8  	return nil
     9  }
    10  
    11  func DestroyCgroup(groups *cgroupConfig.Cgroup, paths map[string]string, executorPid int) error {
    12  	return nil
    13  }
    14  
    15  func (e *UniversalExecutor) removeChrootMounts() error {
    16  	return nil
    17  }
    18  
    19  func (e *UniversalExecutor) runAs(userid string) error {
    20  	return nil
    21  }
    22  
    23  func (e *UniversalExecutor) applyLimits(pid int) error {
    24  	return nil
    25  }
    26  
    27  func (e *UniversalExecutor) configureIsolation() error {
    28  	return nil
    29  }