The at_initial_setup hook was called with the wrong name in setup_default. Fixed now. Resolves #743.

This commit is contained in:
Griatch 2015-04-17 11:37:44 +02:00
parent 4a2d8f16e4
commit e3c3214f9f

View file

@ -235,7 +235,7 @@ CONNECTION_SCREEN_MODULE = "server.conf.connection_screens"
# named at_initial_setup(). This hook method can be used to customize
# the server's initial setup sequence (the very first startup of the system).
# The check will fail quietly if module doesn't exist or fails to load.
AT_INITIAL_SETUP_HOOK_MODULE = "server.conf.at_initial_setup_hook"
AT_INITIAL_SETUP_HOOK_MODULE = "server.conf.at_initial_setup"
# Module containing your custom at_server_start(), at_server_reload() and
# at_server_stop() methods. These methods will be called every time
# the server starts, reloads and resets/stops respectively.