Created
March 30, 2012 15:53
-
-
Save bcarpio/2252405 to your computer and use it in GitHub Desktop.
puppet.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fabric.api import * | |
from fabric.operations import local,put | |
import paramiko | |
import socket | |
import subprocess | |
import os | |
@task | |
# @parallel | |
def puppetd_test(): | |
""" Runs puppetd --test Which Will Update Puppet Changes """ | |
env.warn_only = True | |
run ('puppetd --test') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment