[Gluster-infra] [Bug 1405390] New: probable 'tar' failure after end of smoke test

bugzilla at redhat.com bugzilla at redhat.com
Fri Dec 16 11:25:43 UTC 2016


https://bugzilla.redhat.com/show_bug.cgi?id=1405390

            Bug ID: 1405390
           Summary: probable 'tar' failure after end of smoke test
           Product: GlusterFS
           Version: mainline
         Component: project-infrastructure
          Assignee: bugs at gluster.org
          Reporter: mchangir at redhat.com
                CC: bugs at gluster.org, gluster-infra at gluster.org



Smoke failure at https://build.gluster.org/job/smoke/32376/console

There's a:
$ mv '/var/run/gluster/*dump*' /var/log/glusterfs/

before the 'tar' as well.

Please note that single quotes block wildcard expansion.
You might want to instead:

$ find /var/run/gluster -type f -maxdepth 1 -name '*dump*' \
        -exec mv {} /var/log/glusterfs ';'

or just remove the single quotes
or place the wildcard expression in double quotes

-- 
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=a31MFbbu1S&a=cc_unsubscribe


More information about the Gluster-infra mailing list