You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found the problem running in a container built with the following Dockerfile:
FROM ubuntu:latest
RUN apt-get update && apt-get install -y wget curl jq
ENV CF_CLI_VERSION "6.33.0"
RUN curl -L "https://cli.run.pivotal.io/stable?release=linux64-binary&version=${CF_CLI_VERSION}" | tar -xz -C /usr/local/bin
RUN wget https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc && mv mc /usr/local/bin
Reproduced the issue on a RHEL server as well where I manually ran the same wget command to install mc
Linux nwr-itvl-cfb001 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
@rwsgithubcf, noticed you don't have a trailing / for the prefix you are trying to remove. /home/brouwero/tools/mc rm backup/mysqlbackup/testv1/ -r --force --older-than 9
should work.
Expected behaviour
mc rm
with--older-than
option should remove older filesActual behaviour
nothing is removed
Steps to reproduce the behaviour
----- the version of 12-12-2017 does not remove older files (
mc find
can still find them afterwards)----- the version of 14-10-2017 does remove older files (
mc find
can no longer find them)mc version
Also see above for a comparison
System information
Found the problem running in a container built with the following Dockerfile:
Reproduced the issue on a RHEL server as well where I manually ran the same
wget
command to installmc
The text was updated successfully, but these errors were encountered: