Browse Source

Switch dictionary to /etc/radcli/dictionary

Baptiste Jonglez 7 years ago
parent
commit
8bbf1214b5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/lib/dhcpsrv/radius_host_data_source.cc

+ 3 - 2
src/lib/dhcpsrv/radius_host_data_source.cc

@@ -98,8 +98,9 @@ RadiusHostDataSource(const DatabaseConnection::ParameterMap& parameters) {
     if (res != 0) {
          isc_throw(DbOpenError, "Failed to configure Radius auth_order");
     }
-    /* TODO: just define manually the few attributes we need */
-    res = rc_add_config(rh, "dictionary", "/usr/share/radcli/dictionary", NULL, 0);
+    /* TODO: just define manually the few attributes we need
+       Not possible, see https://github.com/radcli/radcli/issues/24 */
+    res = rc_add_config(rh, "dictionary", "/etc/radcli/dictionary", NULL, 0);
     if (res != 0) {
          isc_throw(DbOpenError, "Failed to configure Radius dictionary");
     }