-
Notifications
You must be signed in to change notification settings - Fork 977
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5662c0a
commit d22bf01
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Section: misc | ||
Priority: optional | ||
Homepage: http://www.proxysql.com | ||
Standards-Version: 3.9.2 | ||
|
||
Package: proxysql | ||
Version: 1.1.0 | ||
Maintainer: Rene Cannao <[email protected]> | ||
Architecture: amd64 | ||
# Changelog: CHANGELOG.md | ||
# Readme: README.md | ||
Files: proxysql /usr/bin/ | ||
etc/proxysql.cnf / | ||
etc/init.d/proxysql / | ||
Description: High performance MySQL proxy | ||
ProxySQL is a fast, reliable MySQL proxy with advanced runtime configuration management (virtually no configuration change requires a restart). | ||
. | ||
It features query routing, query caching, query rewriting (for queries generated by ORMs, for example) and is most of the time a drop-in replacement for mysqld from the point of view of the application. It can be configured and remote controlled through an SQL-compatible admin interface. | ||
File: postinst | ||
#!/bin/sh -e | ||
if [ ! -d /var/run/proxysql ]; then mkdir /var/run/proxysql ; fi | ||
update-rc.d proxysql defaults |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Section: misc | ||
Priority: optional | ||
Homepage: http://www.proxysql.com | ||
Standards-Version: 3.9.2 | ||
|
||
Package: proxysql | ||
Version: 1.1.0 | ||
Maintainer: Rene Cannao <[email protected]> | ||
Architecture: amd64 | ||
# Changelog: CHANGELOG.md | ||
# Readme: README.md | ||
Files: proxysql /usr/bin/ | ||
etc/proxysql.cnf / | ||
etc/init.d/proxysql / | ||
Description: High performance MySQL proxy | ||
ProxySQL is a fast, reliable MySQL proxy with advanced runtime configuration management (virtually no configuration change requires a restart). | ||
. | ||
It features query routing, query caching, query rewriting (for queries generated by ORMs, for example) and is most of the time a drop-in replacement for mysqld from the point of view of the application. It can be configured and remote controlled through an SQL-compatible admin interface. | ||
File: postinst | ||
#!/bin/sh -e | ||
if [ ! -d /var/run/proxysql ]; then mkdir /var/run/proxysql ; fi | ||
update-rc.d proxysql defaults |