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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
88b3c4f0
Commit
88b3c4f0
authored
Jan 01, 2007
by
kent@mysql.com/kent-amd64.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/kent/bk/tmp/mysql-4.1-build
into mysql.com:/home/kent/bk/tmp/mysql-5.0-build
parents
cb5e2b30
0255a1c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
11 deletions
+21
-11
BUILD/check-cpu
BUILD/check-cpu
+1
-2
scripts/mysql_secure_installation.sh
scripts/mysql_secure_installation.sh
+20
-9
No files found.
BUILD/check-cpu
View file @
88b3c4f0
...
@@ -177,8 +177,7 @@ check_cpu () {
...
@@ -177,8 +177,7 @@ check_cpu () {
touch
__test.c
touch
__test.c
while
[
"
$cpu_arg
"
]
;
do
while
[
"
$cpu_arg
"
]
;
do
# FIXME: echo -n isn't portable - see contortions autoconf goes through
printf
"testing
$cpu_arg
... "
>
&2
echo
-n
testing
$cpu_arg
"... "
>
&2
# compile check
# compile check
check_cpu_cflags
=
`
eval echo
$check_cpu_args
`
check_cpu_cflags
=
`
eval echo
$check_cpu_args
`
...
...
scripts/mysql_secure_installation.sh
View file @
88b3c4f0
...
@@ -21,6 +21,16 @@ command=".mysql.$$"
...
@@ -21,6 +21,16 @@ command=".mysql.$$"
trap
"interrupt"
2
trap
"interrupt"
2
rootpass
=
""
rootpass
=
""
echo_n
=
echo_c
=
set_echo_compat
()
{
case
`
echo
"testing
\c
"
`
,
`
echo
-n
testing
`
in
*
c
*
,-n
*
)
echo_n
=
echo_c
=
;;
*
c
*
,
*
)
echo_n
=
-n
echo_c
=
;;
*
)
echo_n
=
echo_c
=
'\c'
;;
esac
}
prepare
()
{
prepare
()
{
touch
$config
$command
touch
$config
$command
...
@@ -44,7 +54,7 @@ get_root_password() {
...
@@ -44,7 +54,7 @@ get_root_password() {
status
=
1
status
=
1
while
[
$status
-eq
1
]
;
do
while
[
$status
-eq
1
]
;
do
stty
-echo
stty
-echo
echo
-n
"Enter current password for root (enter for none):
"
echo
$echo_n
"Enter current password for root (enter for none):
$echo_c
"
read
password
read
password
echo
echo
stty echo
stty echo
...
@@ -64,10 +74,10 @@ get_root_password() {
...
@@ -64,10 +74,10 @@ get_root_password() {
set_root_password
()
{
set_root_password
()
{
stty
-echo
stty
-echo
echo
-n
"New password:
"
echo
$echo_n
"New password:
$echo_c
"
read
password1
read
password1
echo
echo
echo
-n
"Re-enter new password:
"
echo
$echo_n
"Re-enter new password:
$echo_c
"
read
password2
read
password2
echo
echo
stty echo
stty echo
...
@@ -172,6 +182,7 @@ cleanup() {
...
@@ -172,6 +182,7 @@ cleanup() {
# The actual script starts here
# The actual script starts here
prepare
prepare
set_echo_compat
echo
echo
echo
echo
...
@@ -200,11 +211,11 @@ echo "root user without the proper authorisation."
...
@@ -200,11 +211,11 @@ echo "root user without the proper authorisation."
echo
echo
if
[
$hadpass
-eq
0
]
;
then
if
[
$hadpass
-eq
0
]
;
then
echo
-n
"Set root password? [Y/n]
"
echo
$echo_n
"Set root password? [Y/n]
$echo_c
"
else
else
echo
"You already have a root password set, so you can safely answer 'n'."
echo
"You already have a root password set, so you can safely answer 'n'."
echo
echo
echo
-n
"Change the root password? [Y/n]
"
echo
$echo_n
"Change the root password? [Y/n]
$echo_c
"
fi
fi
read
reply
read
reply
...
@@ -231,7 +242,7 @@ echo "go a bit smoother. You should remove them before moving into a"
...
@@ -231,7 +242,7 @@ echo "go a bit smoother. You should remove them before moving into a"
echo
"production environment."
echo
"production environment."
echo
echo
echo
-n
"Remove anonymous users? [Y/n]
"
echo
$echo_n
"Remove anonymous users? [Y/n]
$echo_c
"
read
reply
read
reply
if
[
"
$reply
"
=
"n"
]
;
then
if
[
"
$reply
"
=
"n"
]
;
then
...
@@ -250,7 +261,7 @@ echo "Normally, root should only be allowed to connect from 'localhost'. This"
...
@@ -250,7 +261,7 @@ echo "Normally, root should only be allowed to connect from 'localhost'. This"
echo
"ensures that someone cannot guess at the root password from the network."
echo
"ensures that someone cannot guess at the root password from the network."
echo
echo
echo
-n
"Disallow root login remotely? [Y/n]
"
echo
$echo_n
"Disallow root login remotely? [Y/n]
$echo_c
"
read
reply
read
reply
if
[
"
$reply
"
=
"n"
]
;
then
if
[
"
$reply
"
=
"n"
]
;
then
echo
" ... skipping."
echo
" ... skipping."
...
@@ -269,7 +280,7 @@ echo "access. This is also intended only for testing, and should be removed"
...
@@ -269,7 +280,7 @@ echo "access. This is also intended only for testing, and should be removed"
echo
"before moving into a production environment."
echo
"before moving into a production environment."
echo
echo
echo
-n
"Remove test database and access to it? [Y/n]
"
echo
$echo_n
"Remove test database and access to it? [Y/n]
$echo_c
"
read
reply
read
reply
if
[
"
$reply
"
=
"n"
]
;
then
if
[
"
$reply
"
=
"n"
]
;
then
echo
" ... skipping."
echo
" ... skipping."
...
@@ -287,7 +298,7 @@ echo "Reloading the privilege tables will ensure that all changes made so far"
...
@@ -287,7 +298,7 @@ echo "Reloading the privilege tables will ensure that all changes made so far"
echo
"will take effect immediately."
echo
"will take effect immediately."
echo
echo
echo
-n
"Reload privilege tables now? [Y/n]
"
echo
$echo_n
"Reload privilege tables now? [Y/n]
$echo_c
"
read
reply
read
reply
if
[
"
$reply
"
=
"n"
]
;
then
if
[
"
$reply
"
=
"n"
]
;
then
echo
" ... skipping."
echo
" ... skipping."
...
...
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