mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-02-14 10:19:54 +00:00
* Enable chroot * typo * platform specific chroot functions * Add friendly chroot warning if running without elevated permissions
10 lines
149 B
Go
10 lines
149 B
Go
package cli
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func checkAndSetChroot(newroot string) error {
|
|
return errors.New("chroot is only implimented in linux/darwin")
|
|
}
|