diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-21 12:07:46 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-05-21 12:09:01 -0400 |
commit | 0d0565f55ee3399f5c2c4e4b73acb732b424f3db (patch) | |
tree | a7345295b565e93eda9e353479e1334eb9bdcc05 /libpod/define/config.go | |
parent | a852afab2f37026fa8a45d115c61cd77fb3e7ef1 (diff) | |
download | podman-0d0565f55ee3399f5c2c4e4b73acb732b424f3db.tar.gz podman-0d0565f55ee3399f5c2c4e4b73acb732b424f3db.tar.bz2 podman-0d0565f55ee3399f5c2c4e4b73acb732b424f3db.zip |
Remove github.com/libpod/libpod from cmd/pkg/podman
By moving a couple of variables from libpod/libpod to libpod/libpod/define
I am able shrink the podman-remote-* executables by another megabyte.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'libpod/define/config.go')
-rw-r--r-- | libpod/define/config.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libpod/define/config.go b/libpod/define/config.go index 692eafb04..5ca4da4af 100644 --- a/libpod/define/config.go +++ b/libpod/define/config.go @@ -3,6 +3,9 @@ package define import ( "bufio" "io" + "regexp" + + "github.com/pkg/errors" ) var ( @@ -10,6 +13,13 @@ var ( DefaultSHMLockPath = "/libpod_lock" // DefaultRootlessSHMLockPath is the default path for rootless SHM locks DefaultRootlessSHMLockPath = "/libpod_rootless_lock" + + // NameRegex is a regular expression to validate container/pod names. + // This must NOT be changed from outside of Libpod. It should be a + // constant, but Go won't let us do that. + NameRegex = regexp.MustCompile("^[a-zA-Z0-9][a-zA-Z0-9_.-]*$") + // RegexError is thrown in presence of an invalid container/pod name. + RegexError = errors.Wrapf(ErrInvalidArg, "names must match [a-zA-Z0-9][a-zA-Z0-9_.-]*") ) const ( |