From 241326a9a8c20ad7f2bcf651416b836e7778e090 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Thu, 16 Apr 2020 12:25:26 -0500 Subject: Podman V2 birth remote podman v1 and replace with podman v2. Signed-off-by: Brent Baude --- cmd/podman/main_local_unsupported.go | 44 ------------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 cmd/podman/main_local_unsupported.go (limited to 'cmd/podman/main_local_unsupported.go') diff --git a/cmd/podman/main_local_unsupported.go b/cmd/podman/main_local_unsupported.go deleted file mode 100644 index 75728627e..000000000 --- a/cmd/podman/main_local_unsupported.go +++ /dev/null @@ -1,44 +0,0 @@ -// +build !remoteclient,!linux - -package main - -// The ONLY purpose of this file is to allow the subpackage to compile. Don’t expect anything -// to work. - -import ( - "syscall" - - "github.com/spf13/cobra" -) - -const remote = false - -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() { - // Be sure we can create directories with 0755 mode. - syscall.Umask(0022) -} - -// checkInput can be used to verify any of the globalopt values -func checkInput() error { - return nil -} -- cgit v1.2.3-54-g00ecf