And one more.
It is not good idea to use quotes in Hash or hashref.
Coz $hosts->{'all'} == $hosts={ 'all' => 'foo.bar'};
When you use => operator it already qouted *all* key. So your code is look like $hosts->{'\'all\''}; Most times it works right. But sometimes it could be hard catched error.