Do not install `rclone`.

This commit is contained in:
Kazuhiro MUSASHI 2022-08-18 21:31:34 +09:00
parent 130c6046e3
commit f34dfa1445
3 changed files with 0 additions and 76 deletions

View File

@ -5,9 +5,6 @@ include_recipe './install.rb'
include_recipe './setup.rb' include_recipe './setup.rb'
include_recipe './mc.rb' include_recipe './mc.rb'
include_recipe './rclone_install.rb'
include_recipe './rclone_setup.rb'
# AWS EC2 Swap Setting: # AWS EC2 Swap Setting:
if !node['is_ec2'] if !node['is_ec2']
include_recipe './shared_dir.rb' include_recipe './shared_dir.rb'

View File

@ -1,49 +0,0 @@
rclone_url = ''
rclone_dir = ''
vtag = ''
# Calculate the Download URL:
begin
require 'net/http'
uri = URI.parse('https://github.com/rclone/rclone/releases/latest')
Timeout.timeout(3) do
response = Net::HTTP.get_response(uri)
vtag = $1 if response.body =~ %r{tag\/(v\d+\.\d+\.\d+)}
rclone_dir = "#{node['rclone']['prefix']}#{vtag}#{node['rclone']['postfix']}"
rclone_url = "#{node['rclone']['url']}/#{vtag}/#{rclone_dir}.zip"
end
rescue
# Abort the chef client process:
raise 'Cannot connect to http://github.com.'
end
# バージョン確認して、アップデート必要かどうか確認
result = run_command("rclone --version 2>&1 | grep #{vtag}", error: false)
if result.exit_status != 0
# Download:
TMP = "/tmp/#{rclone_dir}.zip"
execute "wget #{rclone_url} -O #{TMP}"
# Install:
execute "unzip -d /opt/ -o #{TMP}"
execute 'rm -rf /opt/rclone'
execute "mv /opt/#{rclone_dir} /opt/rclone"
# Change Owner and Permissions:
file "#{node['rclone']['storage']}rclone" do
owner 'root'
group 'root'
mode '755'
end
# Create Link
link "#{node['rclone']['location']}rclone" do
to "#{node['rclone']['storage']}rclone"
end
end

View File

@ -1,24 +0,0 @@
# Deploy the files:
directory '/home/kazu634/.config/rclone/' do
owner 'kazu634'
group 'kazu634'
mode '750'
end
remote_file "/home/kazu634/.config/rclone/rclone.conf" do
owner 'kazu634'
group 'kazu634'
mode '600'
end
directory '/root/.config/rclone/' do
owner 'root'
group 'root'
mode '750'
end
remote_file "/root/.config/rclone/rclone.conf" do
owner 'kazu634'
group 'kazu634'
mode '600'
end