Sagar-
I just confirmed that Cypress 7.1.0 should work on Ubuntu 20.04. However, it is recommended to install Cypress 7.1.0 on Ubuntu 22.04 since it has not been tested on the Ubuntu 20.04 operating system.
To make the chef recipe work, you will need to make some modifications to the following file cypress-recipe/providers/install_app.rb after cloning the cypress-recipe git repository. As you will see in the snippet below, the recipe specifically references Ubuntu 22.04 and jammy. You will need to update those references to focal and Ubuntu 20.04.
cypress-recipe/providers/install_app.rb
apt_repository "mongodb" do
uri "http:
distribution "jammy" + "/mongodb-org/6.0"
components ["multiverse"]
keyserver "keyserver.ubuntu.com"
key "39bd841e4be5fb195a65400e6a26b1ae64c3c388"
end
apt_repository new_resource.name do
uri new_resource.repository
distribution "22.04"
components ["main"]
key new_resource.repository_key
end
modified
cypress-recipe/providers/install_app.rb
apt_repository "mongodb" do
uri "http:
distribution "focal" + "/mongodb-org/6.0"
components ["multiverse"]
keyserver "keyserver.ubuntu.com"
key "39bd841e4be5fb195a65400e6a26b1ae64c3c388"
end
apt_repository new_resource.name do
uri new_resource.repository
distribution "20.04"
components ["main"]
key new_resource.repository_key
end
After making those changes, you should be able to run the chef script. Note, you make need to start the installation from scratch to avoid conflicts.
-Dave Czulada
Sagar-
I just confirmed that Cypress 7.1.0 should work on Ubuntu 20.04. However, it is recommended to install Cypress 7.1.0 on Ubuntu 22.04 since it has not been tested on the Ubuntu 20.04 operating system.
To make the chef recipe work, you will need to make some modifications to the following file cypress-recipe/providers/install_app.rb after cloning the cypress-recipe git repository. As you will see in the snippet below, the recipe specifically references Ubuntu 22.04 and jammy. You will need to update those references to focal and Ubuntu 20.04.
cypress-recipe/providers/install_app.rb
modified
cypress-recipe/providers/install_app.rb
After making those changes, you should be able to run the chef script. Note, you make need to start the installation from scratch to avoid conflicts.
-Dave Czulada