diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-03 15:13:24 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-12-03 15:13:24 -0800 |
commit | a3dd4c078da9aefabef4a24d0af2e4382d9f74a1 (patch) | |
tree | a3403becf0032346f41d0b309f54a5767f57eb0b /lib | |
parent | bb4083fa12386e9417e4dbae38325deb03d821e7 (diff) | |
download | vyatta-cfg-system-a3dd4c078da9aefabef4a24d0af2e4382d9f74a1.tar.gz vyatta-cfg-system-a3dd4c078da9aefabef4a24d0af2e4382d9f74a1.zip |
Set modes of created authorization key (and directory)
sshd is picky about modes (and it should be), so make sure
and chmod the file.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/Login/User.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Vyatta/Login/User.pm b/lib/Vyatta/Login/User.pm index f6706e4e..018e7e12 100755 --- a/lib/Vyatta/Login/User.pm +++ b/lib/Vyatta/Login/User.pm @@ -130,10 +130,11 @@ sub set_authorized_keys { unless (-d $sshdir) { mkdir $sshdir; chown ($uid, $gid, $sshdir); + chmod (0750, $sshdir); } my $auth; - unless (open (my $auth, "$sshdir/authorized_keys")) { + unless (open (my $auth, '>', "$sshdir/authorized_keys")) { warn "open $sshdir/authorized_keys failed: $!"; return; } @@ -152,6 +153,7 @@ sub set_authorized_keys { } select STDOUT; close $auth; + chmod (0640, "$sshdir/authorized_keys"); } sub update { |