mirror of
https://tildegit.org/solderpunk/molly-brown.git
synced 2025-04-13 09:29:46 +00:00
13 lines
247 B
Go
13 lines
247 B
Go
// +build linux,go1.16 aix darwin dragonfly freebsd illumos netbsd solaris
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func enableSecurityRestrictions(config Config, errorLog *log.Logger) {
|
|
|
|
// Setuid to an unprivileged user
|
|
DropPrivs(config, errorLog)
|
|
}
|