FreeBSD Bugzilla – Attachment 192139 Details for
Bug 227224
databases/mariadb100-server: Adapt ${name}_limits to the new resource limiting mechanics for services
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch adding support for the new ${name}_limits mechanics (databases/mariadb100-server)
mariadb100-server.diff (text/plain), 3.85 KB, created by
Mateusz Piotrowski
on 2018-04-03 00:23:06 UTC
(
hide
)
Description:
Patch adding support for the new ${name}_limits mechanics (databases/mariadb100-server)
Filename:
MIME Type:
Creator:
Mateusz Piotrowski
Created:
2018-04-03 00:23:06 UTC
Size:
3.85 KB
patch
obsolete
>diff --git databases/mariadb100-server/Makefile databases/mariadb100-server/Makefile >index 8889314b861d..304bf5db52f5 100644 >--- databases/mariadb100-server/Makefile >+++ databases/mariadb100-server/Makefile >@@ -2,7 +2,7 @@ > > PORTNAME?= mariadb > PORTVERSION= 10.0.34 >-PORTREVISION?= 0 >+PORTREVISION?= 1 > CATEGORIES= databases ipv6 > MASTER_SITES= http://ftp.osuosl.org/pub/${SITESDIR}/ \ > http://mirrors.supportex.net/${SITESDIR}/ \ >@@ -161,6 +161,15 @@ NOT_FOR_ARCHS_REASON= TokuDB not supported on 32-bit platforms, see \ > USE_GCC= yes > .endif > >+.include <bsd.port.options.mk> >+ >+.if ${OPSYS} != FreeBSD || ${OSVERSION} < 1101515 || \ >+ ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200057 >+SUB_LIST+= LEGACY_LIMITS="" MODERN_LIMITS="@comment " >+.else >+SUB_LIST+= LEGACY_LIMITS="@comment " MODERN_LIMITS="" >+.endif >+ > post-patch: > @${REINPLACE_CMD} 's/*.1/${MAN1}/' ${WRKSRC}/man/CMakeLists.txt > @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/mysys/my_default.c >diff --git databases/mariadb100-server/files/mysql-server.in databases/mariadb100-server/files/mysql-server.in >index 5f5603f2f575..d3417eebce5f 100644 >--- databases/mariadb100-server/files/mysql-server.in >+++ databases/mariadb100-server/files/mysql-server.in >@@ -9,9 +9,9 @@ > # Add the following line to /etc/rc.conf to enable mysql: > # mysql_(instance_)?enable (bool): Set to "NO" by default. > # Set it to "YES" to enable MySQL. >-# mysql_(instance_)?limits (bool): Set to "NO" by default. >-# Set it to yes to run `limits -e -U mysql` >-# just before mysql starts. >+%%LEGACY_LIMITS%%# mysql_(instance_)?limits (bool): Set to "NO" by default. >+%%LEGACY_LIMITS%%# Set it to yes to run `limits -e -U mysql` >+%%LEGACY_LIMITS%%# just before mysql starts. > # mysql_(instance_)?dbdir (str): Default to "/var/db/mysql" > # Base database directory. > # mysql_(instance_)?args (str): Custom additional arguments to be passed >@@ -22,7 +22,7 @@ > # Default to "mysql" created by the port > # mysql_(instance_)?optfile (str): Server-specific option file. > # Default to "${mysql_dbdir}/my.cnf". >-# mysql_instances (str): Set to "" by default. >+# mysql_instances (str): Set to "" by default. > # If defined, list of instances to enable > > . /etc/rc.subr >@@ -33,9 +33,9 @@ rcvar=mysql_enable > load_rc_config $name > > : ${mysql_enable="NO"} >-: ${mysql_limits="NO"} >+%%LEGACY_LIMITS%%: ${mysql_limits="NO"} > : ${mysql_user="mysql"} >-: ${mysql_limits_args="-e -U $mysql_user"} >+%%LEGACY_LIMITS%%: ${mysql_limits_args="-e -U $mysql_user"} > : ${mysql_dbdir="/var/db/mysql"} > : ${mysql_optfile="${mysql_dbdir}/my.cnf"} > >@@ -51,9 +51,9 @@ if [ -n "$2" ]; then > "$2 "*|*" $2 "*|*" $2"|"$2") > eval mysql_args="\${mysql_${instance}_args:-\"${mysql_args}\"}" > eval mysql_dbdir="\${mysql_${instance}_dbdir:-\"/var/db/mysql_${instance}\"}" >- eval mysql_limits="\${mysql_${instance}_limits:-\"${mysql_limits}\"}" >+%%LEGACY_LIMITS%% eval mysql_limits="\${mysql_${instance}_limits:-\"${mysql_limits}\"}" > eval mysql_user="\${mysql_${instance}_user:-\"${mysql_user}\"}" >- eval mysql_limits_args="\${mysql_${instance}_limits_args:-\"-e -U $mysql_user\"}" >+%%LEGACY_LIMITS%% eval mysql_limits_args="\${mysql_${instance}_limits_args:-\"-e -U $mysql_user\"}" > eval mysql_optfile="\${mysql_${instance}_optfile:-\"${mysql_dbdir}/my.cnf\"}" > eval mysql_pidfile="\${mysql_${instance}_pidfile:-\"${mysql_dbdir}/`/bin/hostname`.pid\"}" > ;; >@@ -119,11 +119,12 @@ mysql_prestart() > if [ ! -d "${mysql_dbdir}/mysql/." ]; then > mysql_create_auth_tables || return 1 > fi >- if checkyesno mysql_limits; then >- eval `/usr/bin/limits ${mysql_limits_args:-"-e -U $mysql_user"}` 2>/dev/null >- else >- return 0 >- fi >+%%LEGACY_LIMITS%% if checkyesno mysql_limits; then >+%%LEGACY_LIMITS%% eval `/usr/bin/limits ${mysql_limits_args:-"-e -U $mysql_user"}` 2>/dev/null >+%%LEGACY_LIMITS%% else >+%%LEGACY_LIMITS%% return 0 >+%%LEGACY_LIMITS%% fi >+%%MODERN_LIMITS%% return 0 > } > > mysql_poststart()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
0mp
:
maintainer-approval?
Actions:
View
|
Diff
Attachments on
bug 227224
: 192139