1
1
Fork 0
mirror of https://tildegit.org/solderpunk/molly-brown synced 2024-05-10 14:46:02 +02:00
molly-brown/security_other_unix.go

11 lines
219 B
Go

// +build linux,go1.16 aix darwin dragonfly freebsd illumos netbsd solaris
package main
func enableSecurityRestrictions(config Config, ui userInfo) error {
// Setuid to an unprivileged user
return DropPrivs(ui)
}