Puppet Class: homeassistant::service
- Inherits:
- homeassistant
- Defined in:
- manifests/service.pp
Overview
1 2 3 4 5 6 7 8 9 |
# File 'manifests/service.pp', line 1
class homeassistant::service (
$home = $homeassistant::home,
) inherits homeassistant {
service { 'homeassistant':
ensure => true,
enable => true,
require => Systemd::Unit_file['homeassistant.service'],
}
}
|