Created
August 25, 2010 13:18
-
-
Save seyyah/549480 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| PROGNAME=${0##*/} | |
| # Yeni bir mysql db'si oluşturur. | |
| whisper () { | |
| local name description value | |
| name="$1" | |
| description="$2" | |
| printf >&2 "$description " | |
| stty -echo 2>/dev/null | |
| read value | |
| stty sane 2>/dev/null | |
| echo >&2 | |
| eval $(echo "$name=\"$value\"") | |
| } | |
| ask () { | |
| local name description value | |
| name="$1" | |
| description="$2" | |
| default="$3" | |
| printf >&2 "$description" | |
| if [ -n "$default" ]; then | |
| printf >&2 " [$default]" | |
| fi | |
| printf >&2 " " | |
| read value | |
| if [ -z "$value" ]; then | |
| value="$default" | |
| fi | |
| eval $(echo "$name=\"$value\"") | |
| } | |
| ask dbname "db ismi (ör. moodle)" | |
| ask dbuser "'$dbname' db kullanıcısı" "$dbname" | |
| ask dbserver "db sunucusu" "localhost" | |
| ask dbadmin "mysql yöneticisi" "root" | |
| whisper dbadmpass "mysql yönetici parolası" | |
| whisper dbpass "'$dbname' db kullanıcı parolası" | |
| . /usr/share/wwwconfig-common/mysql-createuser.sh | |
| if [ "$status" = "error" ]; then | |
| err=1 | |
| echo $error | |
| fi | |
| case "$PROGNAME" in | |
| kullanici|user*) exit $err;; | |
| esac | |
| . /usr/share/wwwconfig-common/mysql-createdb.sh | |
| if [ "$status" = "error" ]; then | |
| err=1 | |
| echo $error | |
| fi | |
| exit $err |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment