diff options
author | Mathias Gug <mathias.gug@canonical.com> | 2010-09-07 18:27:27 -0400 |
---|---|---|
committer | Mathias Gug <mathias.gug@canonical.com> | 2010-09-07 18:27:27 -0400 |
commit | 44ff448a79ade75f8f1210c03b8893182474e3ab (patch) | |
tree | 84da6eee4cc211f7a794ade52a1e190a12b39bf8 | |
parent | 3cfdf654f65882ae3d618b6e7d17d03bf08f9fcb (diff) | |
download | vyos-cloud-init-44ff448a79ade75f8f1210c03b8893182474e3ab.tar.gz vyos-cloud-init-44ff448a79ade75f8f1210c03b8893182474e3ab.zip |
Fix missing import.
-rw-r--r-- | cloudinit/CloudConfig/cc_puppet.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cloudinit/CloudConfig/cc_puppet.py b/cloudinit/CloudConfig/cc_puppet.py index ac72057c..8ccfb2df 100644 --- a/cloudinit/CloudConfig/cc_puppet.py +++ b/cloudinit/CloudConfig/cc_puppet.py @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import os +import pwd +import socket import subprocess def handle(name,cfg,cloud,log,args): |