Skip to content

Commit 1f751bd

Browse files
author
laking
committed
Implemented passwordless ssh-rsa authentication support.
1 parent 6881457 commit 1f751bd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

install/sql/ispconfig3.sql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,7 @@ CREATE TABLE `shell_user` (
736736
`shell` varchar(255) NOT NULL default '/bin/bash',
737737
`dir` varchar(255) default NULL,
738738
`chroot` varchar(255) NOT NULL,
739+
`ssh_rsa` VARCHAR( 600 ) NOT NULL default '',
739740
PRIMARY KEY (`shell_user_id`)
740741
) ENGINE=MyISAM AUTO_INCREMENT=1;
741742

@@ -1070,6 +1071,8 @@ CREATE TABLE `sys_user` (
10701071
`groups` varchar(255) NOT NULL default '',
10711072
`default_group` int(11) unsigned NOT NULL default '0',
10721073
`client_id` int(11) unsigned NOT NULL default '0',
1074+
`id_rsa` VARCHAR( 2000 ) NOT NULL default '',
1075+
`ssh_rsa` VARCHAR( 600 ) NOT NULL default '',
10731076
PRIMARY KEY (`userid`)
10741077
) ENGINE=MyISAM AUTO_INCREMENT=1;
10751078

0 commit comments

Comments
 (0)