2016-02-02 22:36:11 +00:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package plugins
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) configureChroot() error {
|
|
|
|
return nil
|
2016-02-02 22:36:11 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) destroyCgroup() error {
|
|
|
|
return nil
|
2016-02-02 22:36:11 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) removeChrootMounts() error {
|
|
|
|
return nil
|
2016-02-03 02:54:04 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) runAs(userid string) error {
|
|
|
|
return nil
|
2016-02-02 22:36:11 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) applyLimits() error {
|
|
|
|
return nil
|
2016-02-02 22:36:11 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 00:03:43 +00:00
|
|
|
func (e *UniversalExecutor) configureIsolation() error {
|
2016-02-03 02:54:04 +00:00
|
|
|
return nil
|
2016-02-02 22:36:11 +00:00
|
|
|
}
|