Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
1879b2b8
Commit
1879b2b8
authored
Dec 29, 2017
by
Daniel Black
Committed by
Sergey Vojtovich
Jan 15, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
debian: insecure root password is only if plugin is empty
parent
88a9b233
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
debian/additions/debian-start.inc.sh
debian/additions/debian-start.inc.sh
+1
-1
No files found.
debian/additions/debian-start.inc.sh
View file @
1879b2b8
...
...
@@ -65,7 +65,7 @@ function check_root_accounts() {
logger
-p
daemon.info
-i
-t
$0
"Checking for insecure root accounts."
ret
=
$(
echo
"SELECT count(*) FROM mysql.user WHERE user='root' and password='';"
|
$MYSQL
--skip-column-names
)
ret
=
$(
echo
"SELECT count(*) FROM mysql.user WHERE user='root' and password=''
and plugin=''
;"
|
$MYSQL
--skip-column-names
)
if
[
"
$ret
"
-ne
"0"
]
;
then
logger
-p
daemon.warn
-i
-t
$0
"WARNING: mysql.user contains
$ret
root accounts without password!"
fi
...
...
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