puppet-python
puppet-python copied to clipboard
virtualenv.pp exec unless being overwritten by creates
trafficstars
Its seems that the unless statement for exec { "python_virtualenv_${venv_dir}": is being overridden by the creates statement. Removing the "creates" param correctly runs the exec command only once.
diff virtualenv.pp /tmp/virtualenv.pp 163a164
creates => "${venv_dir}/bin/activate",
Thanks