summaryrefslogtreecommitdiff
path: root/cmd/podman/main_remote.go
blob: 753730b56ace68e4df3f5b86caf43e285b62f1fb (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
// +build remoteclient

package main

import (
	"github.com/spf13/cobra"
)

const remote = true

func init() {
	//	remote client specific flags can go here.
}

func setSyslog() error {
	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() {}