]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/python/recipes/default.rb
Don't install python 2 on Ubuntu 20.04
[chef.git] / cookbooks / python / recipes / default.rb
index 731081acb58352f4ab1154133aa2ca87c7d0d849..00f763bac9a0b7a5c084ac3f98e15900f4e0b908 100644 (file)
@@ -1,8 +1,8 @@
 #
-# Cookbook Name:: python
+# Cookbook:: python
 # Recipe:: default
 #
-# Copyright 2017, OpenStreetMap Foundation
+# Copyright:: 2017, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # limitations under the License.
 #
 
-package "python"
-package "python-pip"
+if node[:lsb][:release].to_f < 20.04
+  package "python"
+  package "python-pip"
+end
 
 package "python3"
 package "python3-pip"
 
-package "python-virtualenv"
+package "virtualenv"