The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
| black = '#282828'; | |
| red = '#cc241d'; // red | |
| green = '#98971a'; // green | |
| yellow = '#d79921'; // yellow | |
| blue = '#458588'; // blue | |
| magenta = '#b16286'; // pink | |
| cyan = '#689d6a'; // cyan | |
| white = '#a89984'; // light gray | |
| lightBlack = '#928374'; // medium gray | |
| lightRed = '#fb4934'; // red |
| // Add a sync folder to sync local drush folder to the vm. | |
| vagrant_synced_folders: | |
| - local_path: ~/.drush | |
| destination: /home/vagrant/.drush | |
| type: nfs | |
| create: true |
The easiest way to get the ClamAV package is using Homebrew
$ brew install clamav
Before trying to start the clamd process, you'll need a copy of the ClamAV databases.
Create a freshclam.conf file and configure as so
| #!/bin/sh | |
| ##### Preparations ##### | |
| #----------------------- | |
| # Description is available at http://mlayer.org/tech/2014/11/25/setup-mac-os-x.html | |
| # install homebrew | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew install caskroom/cask/brew-cask # makes available to install apps as packages | |
| brew tap caskroom/versions # for beta version available through cask |
| #!/bin/sh | |
| # | |
| # This script will hold your hand during the process of converting an existing Drupal 7 file field from public to private. | |
| # | |
| # http://twitter.com/thsutton | |
| # http://www.linkedin.com/pub/thomas-sutton/55/391/350 | |
| # http://thomas-sutton.id.au/ | |
| set -eu |
| #!/usr/bin/env node | |
| var path = require('path'), | |
| fs = require('fs'), | |
| extend = require('util')._extend, | |
| exec = require('child_process').exec; | |
| var appOptions = { | |
| settings: 'settings.json', | |
| port: 3000, | |
| env: { |
| <template name="journal"> | |
| <div class="nav-block"></div> | |
| <nav class="journal-nav"> | |
| <ul> | |
| <li> | |
| <a href="#" data-type="Design">Design</a> | |
| </li> | |
| <li> | |
| <a href="#" data-type="Development">Development</a> | |
| </li> |
| <!-- THEME DEBUG --> | |
| <!-- CALL: theme('html') --> | |
| <!-- FILE NAME SUGGESTIONS: | |
| * html--front.tpl.php | |
| * html--node.tpl.php | |
| x html.tpl.php | |
| --> |
| <Directory /> | |
| AllowOverride none | |
| Require all granted | |
| </Directory> |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |