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: b...@gluster.org
          Reporter: mchan...@redhat.com
                CC: b...@gluster.org, gluster-infra@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
_______________________________________________
Gluster-infra mailing list
Gluster-infra@gluster.org
http://www.gluster.org/mailman/listinfo/gluster-infra

Reply via email to