http://qs321.pair.com?node_id=526123


in reply to Re: DBD::CSV failing
in thread DBD::CSV failing

Single quotes don't interpolate and there is no literal \n in your password file.

Try changing the single quote to double quotes:

'eol' => '\n', should be 'eol' => "\n",