File: osutil.go

package info (click to toggle)
golang-github-tredoe-osutil 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 476 kB
  • sloc: makefile: 4
file content (48 lines) | stat: -rw-r--r-- 1,182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright 2014 Jonas mg
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

package osutil

import (
	"errors"
	"os"
	"os/exec"
)

// Exec executes a command setting both standard input, output and error.
func Exec(cmd string, args ...string) error {
	c := exec.Command(cmd, args...)
	c.Stdin = os.Stdin
	c.Stdout = os.Stdout
	c.Stderr = os.Stderr

	if err := c.Run(); err != nil {
		return err
	}
	return nil
}

// ExecSudo executes a command under "sudo".
func ExecSudo(cmd string, args ...string) error {
	return Exec("sudo", append([]string{cmd}, args...)...)
}

// Sudo executes command "sudo".
// If some command needs to use "sudo", then could be used this function at
// the beginning so there is not to wait until that it been requested later.
func Sudo() error {
	return Exec("sudo", "/bin/true")
}

var ErrNoRoot = errors.New("MUST have administrator privileges")

// MustbeRoot returns an error message if the user is not root.
func MustbeRoot() error {
	if os.Getuid() != 0 {
		return ErrNoRoot
	}
	return nil
}