2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2014-02-17 05:54:15 -05:00
|
|
|
// +build darwin
|
2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
2014-02-17 05:54:15 -05:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-02-17 05:54:15 -05:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-02-17 05:54:15 -05:00
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package commands
|
|
|
|
|
2014-02-21 18:33:46 -05:00
|
|
|
import (
|
|
|
|
"syscall"
|
2014-03-31 13:23:34 -04:00
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
jww "github.com/spf13/jwalterweatherman"
|
2014-02-21 18:33:46 -05:00
|
|
|
)
|
|
|
|
|
2014-02-17 05:54:15 -05:00
|
|
|
func init() {
|
2015-12-02 13:56:36 -05:00
|
|
|
checkCmd.AddCommand(limit)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
var limit = &cobra.Command{
|
|
|
|
Use: "ulimit",
|
|
|
|
Short: "Check system ulimit settings",
|
|
|
|
Long: `Hugo will inspect the current ulimit settings on the system.
|
2015-12-02 13:56:36 -05:00
|
|
|
This is primarily to ensure that Hugo can watch enough files on some OSs`,
|
2015-12-02 05:42:53 -05:00
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
2014-02-17 05:54:15 -05:00
|
|
|
var rLimit syscall.Rlimit
|
|
|
|
err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
|
|
|
if err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return newSystemError("Error Getting Rlimit ", err)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
2015-12-02 05:42:53 -05:00
|
|
|
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.FEEDBACK.Println("Current rLimit:", rLimit)
|
2014-02-17 05:54:15 -05:00
|
|
|
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.FEEDBACK.Println("Attempting to increase limit")
|
2014-02-17 05:54:15 -05:00
|
|
|
rLimit.Max = 999999
|
|
|
|
rLimit.Cur = 999999
|
|
|
|
err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
|
|
|
if err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return newSystemError("Error Setting rLimit ", err)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
|
|
|
err = syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
|
|
|
if err != nil {
|
2015-12-02 05:42:53 -05:00
|
|
|
return newSystemError("Error Getting rLimit ", err)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.FEEDBACK.Println("rLimit after change:", rLimit)
|
2015-12-02 05:42:53 -05:00
|
|
|
|
|
|
|
return nil
|
2014-02-17 05:54:15 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func tweakLimit() {
|
|
|
|
var rLimit syscall.Rlimit
|
|
|
|
err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
|
|
|
if err != nil {
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.ERROR.Println("Unable to obtain rLimit", err)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
|
|
|
if rLimit.Cur < rLimit.Max {
|
|
|
|
rLimit.Max = 999999
|
|
|
|
rLimit.Cur = 999999
|
|
|
|
err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
|
|
|
|
if err != nil {
|
2014-03-31 13:23:34 -04:00
|
|
|
jww.ERROR.Println("Unable to increase number of open files limit", err)
|
2014-02-17 05:54:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|