Skip to content

Instantly share code, notes, and snippets.

@threedaymonk
Created April 7, 2011 15:18
Show Gist options
  • Save threedaymonk/907983 to your computer and use it in GitHub Desktop.
Save threedaymonk/907983 to your computer and use it in GitHub Desktop.
ClamAV Chef recipe
# Provides add-apt-repository
package "python-software-properties" do
action :install
end
bash "install_clamav_repo" do
code <<-END
add-apt-repository ppa:ubuntu-clamav/ppa
apt-get update
END
not_if { Dir["/etc/apt/sources.list.d/*clamav*"].any? }
end
package "clamav" do
action :install
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment