File tree Expand file tree Collapse file tree 4 files changed +1
-1345
lines changed
Expand file tree Collapse file tree 4 files changed +1
-1345
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ let () =
6262 @ Test_vm. tests
6363 @ Test_dbsync_master. tests
6464 @ Test_pvs_cache_storage. tests
65- @ Test_extauth_plugin_ADpbis. tests
6665 @ Test_helpers. tests
6766 @ Test_datamodel_lifecycle. tests
6867 @ Test_psr. tests
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,11 +22,9 @@ open D
2222module AD_type = struct
2323 exception Unknown_AD_type of string
2424
25- type t = Pbis | Winbind
25+ type t = Winbind
2626
2727 let of_string = function
28- | "pbis" ->
29- Pbis
3028 | "winbind" ->
3129 Winbind
3230 | _ as at ->
3634
3735module AD = struct
3836 let start_backend_daemon ~wait_until_success = function
39- | AD_type. Pbis ->
40- Extauth_plugin_ADpbis.Lwsmd. start ~wait_until_success ~timeout: 5.
4137 | AD_type. Winbind ->
4238 Extauth_plugin_ADwinbind.Winbind. start ~wait_until_success ~timeout: 5.
4339
4440 let stop_backend_daemon ~wait_until_success = function
45- | AD_type. Pbis ->
46- Extauth_plugin_ADpbis.Lwsmd. stop ~wait_until_success ~timeout: 3.
4741 | AD_type. Winbind ->
4842 Extauth_plugin_ADwinbind.Winbind. stop ~wait_until_success ~timeout: 3.
4943
5044 let init_service ~__context = function
51- | AD_type. Pbis ->
52- Extauth_plugin_ADpbis.Lwsmd. init_service ~__context
5345 | AD_type. Winbind ->
5446 Extauth_plugin_ADwinbind.Winbind. init_service ~__context
5547end
@@ -71,7 +63,5 @@ let init_service ~__context =
7163
7264let methods () =
7365 match ! Xapi_globs. extauth_ad_backend |> AD_type. of_string with
74- | Pbis ->
75- Extauth_plugin_ADpbis.AuthADlw. methods
7666 | Winbind ->
7767 Extauth_plugin_ADwinbind.AuthADWinbind. methods
You can’t perform that action at this time.
0 commit comments