mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-11-04 05:39:05 +00:00 
			
		
		
		
	Still leaves some intermediate repos in `base/` See #1266 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"flag"
 | 
						|
	"fmt"
 | 
						|
	"io/ioutil"
 | 
						|
	"log"
 | 
						|
	"os"
 | 
						|
	"path/filepath"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	configDir string
 | 
						|
	sysctlDir string
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	flag.StringVar(&configDir, "configDir", "/etc/sysctl.d", "directory with config files")
 | 
						|
	flag.StringVar(&sysctlDir, "sysctlDir", "/proc/sys", "mount point for sysctls")
 | 
						|
}
 | 
						|
 | 
						|
func sysctl(line []byte) error {
 | 
						|
	// parse line into a string of expected form X.Y.Z=VALUE
 | 
						|
	sysctlLineKV := strings.Split(string(line[:]), "=")
 | 
						|
	if len(sysctlLineKV) != 2 {
 | 
						|
		if len(sysctlLineKV) >= 1 && len(sysctlLineKV[0]) >= 1 && strings.Trim(sysctlLineKV[0], " ")[:1] == "#" {
 | 
						|
			return nil
 | 
						|
		}
 | 
						|
		return fmt.Errorf("Cannot parse %s", string(line))
 | 
						|
	}
 | 
						|
	// trim any extra whitespace
 | 
						|
	sysctlSetting, sysctlValue := strings.Trim(sysctlLineKV[0], " "), strings.Trim(sysctlLineKV[1], " ")
 | 
						|
	sysctlFile := filepath.Join(sysctlDir, filepath.Join(strings.Split(sysctlSetting, ".")...))
 | 
						|
	file, err := os.OpenFile(sysctlFile, os.O_WRONLY, 0)
 | 
						|
	if err != nil {
 | 
						|
		return fmt.Errorf("Cannot open %s: %s", sysctlFile, err)
 | 
						|
	}
 | 
						|
	defer file.Close()
 | 
						|
	_, err = file.Write([]byte(sysctlValue))
 | 
						|
	if err != nil {
 | 
						|
		return fmt.Errorf("Cannot write to %s: %s", sysctlFile, err)
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func main() {
 | 
						|
	flag.Parse()
 | 
						|
 | 
						|
	files, err := ioutil.ReadDir(configDir)
 | 
						|
	if err != nil {
 | 
						|
		log.Fatalf("Cannot read directory %s: %s", configDir, err)
 | 
						|
	}
 | 
						|
 | 
						|
	for _, file := range files {
 | 
						|
		contents, err := ioutil.ReadFile(filepath.Join(configDir, file.Name()))
 | 
						|
		if err != nil {
 | 
						|
			log.Fatalf("Cannot read file %s: %s", file.Name(), err)
 | 
						|
		}
 | 
						|
		lines := bytes.Split(contents, []byte("\n"))
 | 
						|
		for _, line := range lines {
 | 
						|
			if len(line) == 0 {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
			err = sysctl(line)
 | 
						|
			if err != nil {
 | 
						|
				log.Fatal(err)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |