summaryrefslogtreecommitdiffstats
path: root/deploy/puppet/gluon/manifests/service.pp
blob: b909d548f203bc352646b87f4f0304b69351a35b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class gluon::service {

  service { 'openstack-proton-server':
    ensure   => running,
    enable   => true,
  }

  service { 'openstack-proton-shim-server':
    ensure   => running,
    enable   => true,
  }

}