mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Fix binaries in command ejabberdctl stop_kindly
This commit is contained in:
parent
d24dc4e9c8
commit
3882c4d514
@ -252,9 +252,10 @@ reopen_log() ->
|
|||||||
%%% Stop Kindly
|
%%% Stop Kindly
|
||||||
%%%
|
%%%
|
||||||
|
|
||||||
stop_kindly(DelaySeconds, AnnouncementText) ->
|
stop_kindly(DelaySeconds, AnnouncementTextString) ->
|
||||||
Subject = io_lib:format("Server stop in ~p seconds!", [DelaySeconds]),
|
Subject = list_to_binary(io_lib:format("Server stop in ~p seconds!", [DelaySeconds])),
|
||||||
WaitingDesc = io_lib:format("Waiting ~p seconds", [DelaySeconds]),
|
WaitingDesc = list_to_binary(io_lib:format("Waiting ~p seconds", [DelaySeconds])),
|
||||||
|
AnnouncementText = list_to_binary(AnnouncementTextString),
|
||||||
Steps = [
|
Steps = [
|
||||||
{"Stopping ejabberd port listeners",
|
{"Stopping ejabberd port listeners",
|
||||||
ejabberd_listener, stop_listeners, []},
|
ejabberd_listener, stop_listeners, []},
|
||||||
|
Loading…
Reference in New Issue
Block a user