Commit 8ad43602 authored by Angel L. Mateo's avatar Angel L. Mateo
Browse files

Fix freeradius service in debian systems

freeradius init script do have status option in debian systems. Without this modification, freeradius is restarted when a config file is changed, but it not started if it is not running.
parent c87de16c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ class freeradius::params {
  # Whether the FreeRADIUS init.d startup script has a status setting or not
  $fr_service_has_status = $::osfamily ? {
    'RedHat' => true,
    'Debian' => false,
    'Debian' => true,
    default  => false,
  }