summaryrefslogtreecommitdiff
path: root/cmd/podman/main_remote.go
blob: ecbb44d5a7433fa0d013e6c9637a40404f7645e1 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// +build remoteclient

package main

import (
	"fmt"
	"os"
	"os/user"
	"path/filepath"

	"github.com/docker/docker/pkg/homedir"
	"github.com/sirupsen/logrus"
	"github.com/spf13/cobra"
)

const remote = true

func init() {
	var username string
	if curruser, err := user.Current(); err == nil {
		username = curruser.Username
	}
	rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.ConnectionName, "connection", "", "remote connection name")
	rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteConfigFilePath, "remote-config-path", "", "alternate path for configuration file")
	rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteUserName, "username", username, "username on the remote host")
	rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.RemoteHost, "remote-host", "", "remote host")
	// TODO maybe we allow the altering of this for bridge connections?
	// rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.VarlinkAddress, "varlink-address", adapter.DefaultAddress, "address of the varlink socket")
	rootCmd.PersistentFlags().StringVar(&MainGlobalOpts.LogLevel, "log-level", "error", "Log messages above specified level: debug, info, warn, error, fatal or panic. Logged to ~/.config/containers/podman.log")
	rootCmd.PersistentFlags().BoolVar(&MainGlobalOpts.Syslog, "syslog", false, "Output logging information to syslog as well as the console")
}

func setSyslog() error {
	// Log to file if not using syslog
	homeDir := homedir.Get()
	path := filepath.Join(homeDir, ".config", "containers")

	if _, err := os.Stat(path); os.IsNotExist(err) {
		if err := os.MkdirAll(path, 0750); err != nil {
			fmt.Fprintf(os.Stderr, "%v", err)
			return err
		}
	}

	// Update path to include file name
	path = filepath.Join(path, "podman.log")

	// Create the log file if doesn't exist. And append to it if it already exists.
	file, err := os.OpenFile(path, os.O_WRONLY|os.O_APPEND|os.O_CREATE, 0640)
	if err != nil {
		// Cannot open log file. Logging to stderr
		fmt.Fprintf(os.Stderr, "%v", err)
		return err
	} else {
		formatter := new(logrus.TextFormatter)
		formatter.FullTimestamp = true
		logrus.SetFormatter(formatter)
		logrus.SetOutput(file)
	}

	// Note this message is only logged if --log-level >= Info!
	logrus.Infof("Logging level set to %s", logrus.GetLevel().String())
	return nil
}

func profileOn(cmd *cobra.Command) error {
	return nil
}

func profileOff(cmd *cobra.Command) error {
	return nil
}

func setupRootless(cmd *cobra.Command, args []string) error {
	return nil
}

func setRLimits() error {
	return nil
}

func setUMask() {}