mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
Merge pull request #391 from NeatNerdPrime/puppet_module_upgrade
Puppet tasks fix commit
This commit is contained in:
commit
8932f223b8
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
import os
|
import os
|
||||||
from bootstrapvz.base import Task
|
from bootstrapvz.base import Task
|
||||||
from bootstrapvz.common import phases
|
from bootstrapvz.common import phases
|
||||||
|
from bootstrapvz.common.tasks import apt
|
||||||
from bootstrapvz.common.exceptions import TaskError
|
from bootstrapvz.common.exceptions import TaskError
|
||||||
from bootstrapvz.common.releases import jessie, wheezy
|
from bootstrapvz.common.releases import jessie, wheezy
|
||||||
from bootstrapvz.common.tools import sed_i, log_check_call, rel_path
|
from bootstrapvz.common.tools import sed_i, log_check_call, rel_path
|
||||||
|
@ -59,6 +60,7 @@ class CheckManifestPath(Task):
|
||||||
class InstallPuppetlabsPC1ReleaseKey(Task):
|
class InstallPuppetlabsPC1ReleaseKey(Task):
|
||||||
description = 'Install puppetlabs PC1 Release key into the keyring'
|
description = 'Install puppetlabs PC1 Release key into the keyring'
|
||||||
phase = phases.package_installation
|
phase = phases.package_installation
|
||||||
|
successors = [apt.WriteSources]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run(cls, info):
|
def run(cls, info):
|
||||||
|
|
Loading…
Add table
Reference in a new issue