diff --git a/microcloud/cmd/microcloudd/main.go b/microcloud/cmd/microcloudd/main.go index f878f1eda..a2fead92f 100644 --- a/microcloud/cmd/microcloudd/main.go +++ b/microcloud/cmd/microcloudd/main.go @@ -3,7 +3,6 @@ package main import ( "fmt" - "math/rand" "os" "time" @@ -140,10 +139,6 @@ func (c *cmdDaemon) Run(cmd *cobra.Command, args []string) error { return s.Services[types.MicroCloud].(*service.CloudService).StartCloud(s, endpoints) } -func init() { - rand.Seed(time.Now().UnixNano()) -} - func main() { // Only root should run this if os.Geteuid() != 0 {