func (c *fileCmd) flags() { gnuflag.IntVar(&c.uid, "uid", -1, gettext.Gettext("Set the file's uid on push")) gnuflag.IntVar(&c.gid, "gid", -1, gettext.Gettext("Set the file's gid on push")) gnuflag.StringVar(&c.mode, "mode", "0644", gettext.Gettext("Set the file's perms on push")) }
func (c *actionCmd) flags() { if c.hasTimeout { gnuflag.IntVar(&timeout, "timeout", -1, gettext.Gettext("Time to wait for the container before killing it.")) gnuflag.BoolVar(&force, "force", false, gettext.Gettext("Force the container to shutdown.")) } }