Configure and start service

This commit is contained in:
2022-09-08 20:54:55 -04:00
parent 93a65223fc
commit bccd3e8a4c
9 changed files with 105 additions and 0 deletions

11
manifests/service.pp Normal file
View File

@@ -0,0 +1,11 @@
# @summary Manage the klipper service
#
# @api private
#
class klipper::service {
systemd::unit_file { 'klipper.service':
content => template('klipper/klipper.service.erb'),
enable => true,
active => true,
}
}