eb85a6e94c
The split reflects that between variables which can and cannot be overridden by .molly files, and this greatly simplifies the processing of said files, getting rid of the need for lots of ugly temporary variable thrashing.
10 lines
222 B
Go
10 lines
222 B
Go
// +build linux,go1.16 aix darwin dragonfly freebsd illumos netbsd solaris
|
|
|
|
package main
|
|
|
|
func enableSecurityRestrictions(config SysConfig, ui userInfo) error {
|
|
|
|
// Setuid to an unprivileged user
|
|
return DropPrivs(ui)
|
|
|
|
}
|