# Insert/Foo.pm our $foo = 1; 1; # Client1.pm package Client1; require Insert::Foo; # $Client1::foo is set by Insert::Foo ... 1; # Client2.pm package Client2; require Insert::Foo; # $Client2::foo is set by Insert::Foo ... 1;