Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
1f751bd4
Commit
1f751bd4
authored
Apr 04, 2011
by
laking
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented passwordless ssh-rsa authentication support.
parent
68814576
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
install/sql/ispconfig3.sql
install/sql/ispconfig3.sql
+3
-0
No files found.
install/sql/ispconfig3.sql
View file @
1f751bd4
...
...
@@ -736,6 +736,7 @@ CREATE TABLE `shell_user` (
`shell`
varchar
(
255
)
NOT
NULL
default
'/bin/bash'
,
`dir`
varchar
(
255
)
default
NULL
,
`chroot`
varchar
(
255
)
NOT
NULL
,
`ssh_rsa`
VARCHAR
(
600
)
NOT
NULL
default
''
,
PRIMARY
KEY
(
`shell_user_id`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
1
;
...
...
@@ -1070,6 +1071,8 @@ CREATE TABLE `sys_user` (
`groups`
varchar
(
255
)
NOT
NULL
default
''
,
`default_group`
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
`client_id`
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
`id_rsa`
VARCHAR
(
2000
)
NOT
NULL
default
''
,
`ssh_rsa`
VARCHAR
(
600
)
NOT
NULL
default
''
,
PRIMARY
KEY
(
`userid`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment