Install git, it is a required dependency for Gitea

I didn't catch it because git is installed by default in the Vagrant box
I used to write the cookbook
This commit is contained in:
Greg Karékinian 2020-06-02 11:41:19 +02:00
parent 2d6c514257
commit c8e50fd226

View File

@ -42,6 +42,9 @@ postgresql_server = postgresql_primary_node[:ipaddress]
# PostgreSQL is on the same server, connect through localhost
postgresql_server = "localhost" if postgresql_primary_node[:hostname] == node[:hostname]
# Dependency
package "git"
user "git" do
manage_home true
home "/home/git"