diff options
Diffstat (limited to 'p11p-daemon')
-rw-r--r-- | p11p-daemon/config/sys.config | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/p11p-daemon/config/sys.config b/p11p-daemon/config/sys.config index 9cc3f6e..2dbaa87 100644 --- a/p11p-daemon/config/sys.config +++ b/p11p-daemon/config/sys.config @@ -1,20 +1,17 @@ +%% -*- erlang -*- [ - {p11p, [ - {loglevel, 3}, - {groups, [ - {"vtoken0", - [{modules, [ - {"softhsm2", "/usr/lib/softhsm/libsofthsm2.so"}, - %%{"bogusmod_0_1", "/path/to/bogusmod_0_1"} - {"bogusmod_0", "/usr/lib/softhsm/libsofthsm2.so"} - ]}]}, - {"vtoken1", - [{modules, [ - {"softhsm2", "/usr/lib/softhsm/libsofthsm2.so"} - ]}]} - ]} - ]}, - {lager, - [{handlers, - [{lager_console_backend, debug}]}]} + {p11p, + [ + {loglevel, 3}, + {groups, + [{"vtoken0", + [{modules, + [{"softhsm2", "/usr/lib/softhsm/libsofthsm2.so"}, + {"bogusmod_0", "/usr/lib/softhsm/libsofthsm2.so"}]}]}, + {"vtoken1", + [{modules, + [{"softhsm2", "/usr/lib/softhsm/libsofthsm2.so"}]}]}]}]}, + {lager, + [{handlers, + [{lager_console_backend, debug}]}]} ]. |