Open fluca1978 opened 6 days ago
Using sqitch 1.4.1 from CPAN. I noted that sqitch.conf has default read permission for everyone:
sqitch
1.4.1
sqitch.conf
% sqitch --version sqitch (App::Sqitch) v1.4.1 % ls -l sqitch.conf -rw-rw-r-- 1 luca luca 222 nov 19 09:41 sqitch.conf
Apparently the application is working even if permissions are set for only the user, thus:
% chmod 600 sqitch.conf
Shouldn't this be default permission mask since sqitch.conf could possibly contain connection passwords?
Never thought about it. It defaults to whatever the current directory's umask is.
Using
sqitch
1.4.1
from CPAN. I noted thatsqitch.conf
has default read permission for everyone:Apparently the application is working even if permissions are set for only the user, thus:
Shouldn't this be default permission mask since
sqitch.conf
could possibly contain connection passwords?