I just found out that I could not target minion using glob matching if the number to be matched is composed of more than one digit :
salt 'mail[1-4]*' test.ping
OK
salt 'mail[11-14]*' test.ping
Does NOT
I know I could use regxp switch for that, but I am just wondering if this is standard behaviour in salt ? (and in python by extension)
Thanks