fix(appup): remove the post relup scripts from emqx_dashboard.appup.src

The instructions have been move into module `emqx_relup`.
This commit is contained in:
Shawn 2022-02-28 10:05:41 +08:00
parent 28bd2fcfa4
commit b7d07d7a96
1 changed files with 3 additions and 10 deletions

View File

@ -1,18 +1,11 @@
%% -*- mode: erlang -*-
{VSN,
[ {<<".*">>,
%% load all plugins
%% NOTE: this depends on the fact that emqx_dashboard is always
%% the last application gets upgraded
[ {apply, {emqx_rule_engine, load_providers, []}}
, {restart_application, emqx_dashboard}
, {apply, {emqx_plugins, load, []}}
[ {restart_application, emqx_dashboard}
]}
],
[ {<<".*">>,
[ {apply, {emqx_rule_engine, load_providers, []}}
, {restart_application, emqx_dashboard}
, {apply, {emqx_plugins, load, []}}
[ {restart_application, emqx_dashboard}
]}
]
}.
}.