mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Merged pull request #294 from alexrinass/mysql-macports-plugin.
Fixed folder naming for mysql-macports plugin and improved start/stop scr
This commit is contained in:
commit
5f0e585e5b
2 changed files with 8 additions and 6 deletions
8
plugins/mysql-macports/mysql-macports.plugin.zsh
Normal file
8
plugins/mysql-macports/mysql-macports.plugin.zsh
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# commands to control local mysql-server installation
|
||||||
|
# paths are for osx installation via macports
|
||||||
|
|
||||||
|
alias mysqlstart='sudo /opt/local/share/mysql5/mysql/mysql.server start'
|
||||||
|
alias mysqlstop='sudo /opt/local/share/mysql5/mysql/mysql.server stop'
|
||||||
|
alias mysqlrestart='sudo /opt/local/share/mysql5/mysql/mysql.server restart'
|
||||||
|
|
||||||
|
alias mysqlstatus='mysqladmin5 -u root -p ping'
|
|
@ -1,6 +0,0 @@
|
||||||
# commands to control local mysql-server installation
|
|
||||||
# paths are for osx installtion via macports
|
|
||||||
|
|
||||||
alias mysqlstart='sudo /opt/local/bin/mysqld_safe5'
|
|
||||||
alias mysqlstop='/opt/local/bin/mysqladmin5 -u root -p shutdown'
|
|
||||||
alias mysqlstatus='mysqladmin5 -u root -p ping'
|
|
Loading…
Reference in a new issue