diff --git a/boost.drush b/boost.drush deleted file mode 100644 index 2d323eade373b91008d99007d10ce06f9af26364..0000000000000000000000000000000000000000 --- a/boost.drush +++ /dev/null @@ -1,52 +0,0 @@ - $path))); - } -} - -/** - * Enables the Boost static page cache. - */ -function drush_boost_enable() { - drush_op('variable_set', 'boost', CACHE_ENABLED); - - if (DRUSH_VERBOSE) { - drush_print(t('Boost static page cache enabled.')); - } -} - -/** - * Disables the Boost static page cache. - */ -function drush_boost_disable() { - drush_op('variable_set', 'boost', CACHE_DISABLED); - - if (DRUSH_VERBOSE) { - drush_print(t('Boost static page cache disabled.')); - } -} - -//////////////////////////////////////////////////////////////////////////////