diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/install.pp | 1 | ||||
-rw-r--r-- | manifests/virtualenv.pp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/manifests/install.pp b/manifests/install.pp index c4914f7..1c2cb0b 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -17,6 +17,7 @@ class python::install { $python = $python::version ? { 'system' => 'python', + 'pypy' => 'pypy', default => "python${python::version}", } diff --git a/manifests/virtualenv.pp b/manifests/virtualenv.pp index b9cd689..2faa809 100644 --- a/manifests/virtualenv.pp +++ b/manifests/virtualenv.pp @@ -85,6 +85,7 @@ define python::virtualenv ( $python = $version ? { 'system' => 'python', + 'pypy' => 'pypy', default => "python${version}", } |