+action :create do
+ if key
+ execute "apt-key-#{key}-clean" do
+ command "/usr/bin/apt-key adv --batch --delete-key --yes #key}"
+ only_if "/usr/bin/apt-key adv --list-keys #{key} | fgrep expired"
+ end
+
+ if key_url
+ execute "apt-key-#{key}-install" do
+ command "/usr/bin/apt-key adv --fetch-keys #{key_url}"
+ not_if "/usr/bin/apt-key adv --list-keys #{key}"
+ notifies :run, "execute[apt-update-#{new_resource.name}]"
+ end
+ else
+ execute "apt-key-#{key}-install" do
+ command "/usr/bin/apt-key adv --keyserver hkp://keys.gnupg.net --recv-keys #{key}"
+ not_if "/usr/bin/apt-key adv --list-keys #{key}"
+ notifies :run, "execute[apt-update-#{new_resource.name}]"
+ end
+ end
+ end
+
+ template source_path do
+ source source_template
+ owner "root"
+ group "root"
+ mode 0o644
+ variables :url => url
+ notifies :run, "execute[apt-update-#{new_resource.name}]"
+ end
+
+ execute "apt-update-#{name}" do
+ action update ? :run : :nothing
+ command "/usr/bin/apt-get update --no-list-cleanup -o Dir::Etc::sourcelist='#{source_path}' -o Dir::Etc::sourceparts='-'"
+ end
+end
+
+action :delete do
+ file source_path do
+ action :delete
+ end
+end
+
+def source_path
+ "/etc/apt/sources.list.d/#{name}.list"