diff options
Diffstat (limited to 'cloudinit/handlers')
-rw-r--r-- | cloudinit/handlers/upstart_job.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cloudinit/handlers/upstart_job.py b/cloudinit/handlers/upstart_job.py index 411a5d68..99e0afde 100644 --- a/cloudinit/handlers/upstart_job.py +++ b/cloudinit/handlers/upstart_job.py @@ -46,6 +46,10 @@ class UpstartJobPartHandler(handlers.Handler): if ctype in handlers.CONTENT_SIGNALS: return + # See: https://bugs.launchpad.net/bugs/819507 + if frequency != PER_INSTANCE: + return + if not self.upstart_dir: return |