Compare commits
No commits in common. "5d2d7e12472e95934797251889d6d6ac895e41b8" and "79a5d3438d1000368464470e6b766de44a451790" have entirely different histories.
5d2d7e1247
...
79a5d3438d
|
@ -5,5 +5,3 @@ include_recipe './ssh.rb'
|
||||||
include_recipe './vim.rb'
|
include_recipe './vim.rb'
|
||||||
|
|
||||||
include_recipe './mc.rb'
|
include_recipe './mc.rb'
|
||||||
|
|
||||||
include_recipe './mise.rb'
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=amd64] https://mise.jdx.dev/deb stable main
|
|
|
@ -1,27 +0,0 @@
|
||||||
directory '/etc/apt/keyrings/' do
|
|
||||||
owner 'root'
|
|
||||||
group 'root'
|
|
||||||
mode '0755'
|
|
||||||
end
|
|
||||||
|
|
||||||
execute 'wget -qO - https://mise.jdx.dev/gpg-key.pub | gpg --dearmor | tee /etc/apt/keyrings/mise-archive-keyring.gpg' do
|
|
||||||
not_if 'test -f /etc/apt/keyrings/mise-archive-keyring.gpg'
|
|
||||||
end
|
|
||||||
|
|
||||||
remote_file '/etc/apt/sources.list.d/mise.list' do
|
|
||||||
owner 'root'
|
|
||||||
group 'root'
|
|
||||||
mode '0644'
|
|
||||||
end
|
|
||||||
|
|
||||||
execute 'apt update' do
|
|
||||||
not_if 'which mise'
|
|
||||||
end
|
|
||||||
|
|
||||||
package 'mise'
|
|
||||||
|
|
||||||
|
|
||||||
# For Ruby installation:
|
|
||||||
%w( git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev ).each do |p|
|
|
||||||
package p
|
|
||||||
end
|
|
Loading…
Reference in New Issue