~juju/ubuntu/oneiric/juju/backportable-packaging

« back to all changes in this revision

Viewing changes to juju/providers/lxc/machine.py

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-10-09 09:50:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20111009095034-2xp4tmcwabw157rn
Tags: 0.5+bzr398-0ubuntu1
* New upstream snapshot.
* refreshed patches

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from juju.machine import ProviderMachine
2
 
 
3
 
 
4
 
class LocalMachine(ProviderMachine):
5
 
    """Represents host machine, when doing local development.
6
 
    """
7
 
 
8
 
    def __init__(self):
9
 
        self.instance_id = "local"
10
 
        self.private_dns_name = self.dns_name = "localhost"