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
f4d20df9
Commit
f4d20df9
authored
Sep 28, 2009
by
Jonathan Perkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge to mysql-5.0-bugteam
parents
5dda6c18
ea295c23
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
support-files/binary-configure.sh
support-files/binary-configure.sh
+24
-0
No files found.
support-files/binary-configure.sh
View file @
f4d20df9
#!/bin/sh
SCRIPT_NAME
=
"
`
basename
$0
`
"
usage
()
{
echo
"Usage:
${
SCRIPT_NAME
}
[--help|-h]"
echo
""
echo
"This script creates the MySQL system tables and starts the server."
}
for
arg
do
case
"
$arg
"
in
--help
|
-h
)
usage
exit
0
;;
*
)
echo
"
${
SCRIPT_NAME
}
: unknown option
$arg
"
usage
exit
2
;;
esac
done
if
test
!
-x
./scripts/mysql_install_db
then
echo
"I didn't find the script './scripts/mysql_install_db'."
...
...
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