https://github.com/cilium/cilium
Raw File
Tip revision: 506fcf67bbc2562c0fe60bca7a2fe5d751300185 authored by Joe Stringer on 15 July 2022, 17:05:01 UTC
Prepare for release v1.11.7
Tip revision: 506fcf6
unamecheck.go
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020 Authors of Cilium

package main

import (
	"bytes"
	"os/exec"
	"regexp"
)

var linuxRegexp = regexp.MustCompile(`(?i)linux`)

// A unameCheck checks the output of uname -a.
type unameCheck struct{}

func (unameCheck) Name() string {
	return "uname"
}

func (unameCheck) Run() (checkResult, string) {
	output, err := exec.Command("uname", "-a").CombinedOutput()
	if err != nil {
		return checkFailed, err.Error()
	}

	message := string(bytes.TrimSpace(output))
	if !linuxRegexp.Match(output) {
		return checkWarning, message
	}

	return checkOK, message
}

func (unameCheck) Hint() string {
	return ""
}
back to top