Use the proper package name all through the setup

I wasn't braining correctly before when I committed the half-baked change
This commit is contained in:
R. Tyler Croy 2017-09-22 20:22:14 -07:00
parent 869d781746
commit 24c9b907d4
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
1 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@ class jail::setup () {
package { 'py36-iocage':
ensure => installed,
name => 'iocage',
}
service { 'iocage':
@ -19,5 +18,5 @@ class jail::setup () {
}
File['/etc/jail.conf'] ~> Service['iocage']
Package['iocage'] ~> Service['iocage']
Package['py36-iocage'] ~> Service['iocage']
}