• # mauvais pattern ?

    Posté par . En réponse au message Rsync problème avec include et exclude. Évalué à 1.

    Ton exemple est cité dans la page de manuel de rsync:

    INCLUDE/EXCLUDE PATTERN RULES

    [...] If a pattern excludes a particular parent directory, it can ren-
    der a deeper include pattern ineffectual because rsync did not descend
    through that excluded section of the hierarchy. This is particularly
    important when using a trailing '*' rule. For instance, this won't
    work:

    + /some/path/this-file-will-not-be-found
    + /file-is-included
    - *

    This fails because the parent directory "some" is excluded by the '*'
    rule, so rsync never visits any of the files in the "some" or
    "some/path" directories. One solution [...]


    Il faut revoir ta règle d'exclusion (et je te conseille d'approfondir la lecture du manuel ;) )