Exemplo n.º 1
0
 public void Configuration(IAppBuilder app)
 {
     ConsoleLogger.Log("loading core service configuration");
     AntdBoot.StartDatabase();
     AntdBoot.StartSignalR(app, true);
     AntdBoot.StartNancy(app);
 }
Exemplo n.º 2
0
 private static void Configuration()
 {
     AntdBoot.CheckOsIsRw();
     AntdBoot.SetWorkingDirectories();
     AntdBoot.SetCoreParameters();
     AntdBoot.StartDatabase();
     AntdBoot.CheckCertificate();
     AntdBoot.ReloadUsers();
     AntdBoot.ReloadSsh();
     //AntdBoot.SetOverlayDirectories();
     //AntdBoot.SetSystemdJournald();
     AntdBoot.SetMounts();
     AntdBoot.SetOsMount();
     AntdBoot.LaunchDefaultOsConfiguration();
     //AntdBoot.SetWebsocketd();
     AntdBoot.CheckResolv();
     AntdBoot.SetFirewall();
     AntdBoot.ImportSystemInformation();
     //AntdBoot.StartScheduler(true);
     AntdBoot.StartDirectoryWatcher();
     AntdBoot.LaunchApps();
     //AntdBoot.StartWebsocketServer();
     //AntdBoot.DownloadDefaultRepoFiles();
 }