diff options
author | khrolenko <khrolenko@yandex-team.ru> | 2022-04-22 19:22:44 +0300 |
---|---|---|
committer | khrolenko <khrolenko@yandex-team.ru> | 2022-04-22 19:22:44 +0300 |
commit | eb96602aa423e6058480538df91caed98d51884c (patch) | |
tree | c5cbc39c51cd72677d052e8d543b5def7723956a | |
parent | 14087d69f0f56eb361d3306f4d80bd590566a04f (diff) | |
download | ydb-eb96602aa423e6058480538df91caed98d51884c.tar.gz |
GEOINFRA-3035 dont put yacare supervisord conf to templates
ref:88e43fd4a8da3b403b0bde2ee0326427263977f1
-rw-r--r-- | build/ymake.core.conf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 1bb1a4c9439..da729764ad1 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -1829,7 +1829,7 @@ macro _YCR_GENERATE_CONFIGS_INTL(Package, App, Configs...) { # tag:ycr-specific macro _YCR_GENERATE_CONFIGS(Package, App) { - .CMD=$_YCR_GENERATE_CONFIGS_INTL($Package $App ${pre=etc/yandex/maps/yacare/:App.conf} ${pre=etc/template_generator/templates/etc/logrotate.d/:App} ${pre=etc/nginx/sites-available/:App.conf} ${pre=etc/syslog-ng/conf-available/:App.conf} ${pre=etc/template_generator/config.d/:App.yaml} ${pre=/juggler/checks-available/yacare_;suf=/MANIFEST.json:App} ${pre=etc/yandex/maps/roquefort/:App.conf} ${pre=usr/lib/yandex/maps/yacare/lua/init_worker.d/rate_limiter_:App.lua} ${pre=usr/lib/yandex/maps/yacare/lua/init_worker.d/tvm_:App.lua} ${pre=usr/lib/yandex/maps/yacare/lua/init.d/tvm_:App.lua} ${pre=etc/template_generator/templates/etc/supervisor/conf-available/:App.conf} ${pre=etc/template_generator/templates/etc/yandex/unified_agent/conf.d/04_yacare_:App.yml}) + .CMD=$_YCR_GENERATE_CONFIGS_INTL($Package $App ${pre=etc/yandex/maps/yacare/:App.conf} ${pre=etc/template_generator/templates/etc/logrotate.d/:App} ${pre=etc/nginx/sites-available/:App.conf} ${pre=etc/syslog-ng/conf-available/:App.conf} ${pre=etc/template_generator/config.d/:App.yaml} ${pre=/juggler/checks-available/yacare_;suf=/MANIFEST.json:App} ${pre=etc/yandex/maps/roquefort/:App.conf} ${pre=usr/lib/yandex/maps/yacare/lua/init_worker.d/rate_limiter_:App.lua} ${pre=usr/lib/yandex/maps/yacare/lua/init_worker.d/tvm_:App.lua} ${pre=usr/lib/yandex/maps/yacare/lua/init.d/tvm_:App.lua} ${pre=etc/supervisor/conf-available/:App.conf} ${pre=etc/template_generator/templates/etc/yandex/unified_agent/conf.d/04_yacare_:App.yml}) } # tag:ycr-specific @@ -7030,7 +7030,7 @@ macro _FMT_INDUCED_DEPS(For, Deps...) { ### Format value for `INDUCED_DEPS` param in certain macros and assign to `VAR` ### This tells that files of Type resulted from code generation macros (not neccessarily directly, ### but in processing chain of generated files) should have extra dependencies from list of Files... -### +### ### Prominent example here is Cython: one can generate .pyx file that may depend on .pxd and have cimpot from ### certain .h. The former is dependency for .pyx itself, while the latter is dependency for .pyx.cpp ### resulted from Cython-processing of generated pyx. The code ganeration will look like: @@ -7042,9 +7042,9 @@ macro _FMT_INDUCED_DEPS(For, Deps...) { ### ### The VAR will basically contain pair of `Type:[Files...]` in a form suitable for passing ### as an element of array parameter. This is needed because language of ya.make doesn't support -### Dict params right now and so it is impossible to directly pass something +### Dict params right now and so it is impossible to directly pass something ### like `{Type1:[Files2...], Type2:[Files2...]}` -### +### macro PREPARE_INDUCED_DEPS(VAR, For, Deps...) { SET($VAR \$_FMT_INDUCED_DEPS($For $Deps)) } |