Remove some TODOs that have been around for way too long and havent been an issue for a long time
This commit is contained in:
parent
2b00036484
commit
4265f58985
5 changed files with 0 additions and 5 deletions
|
@ -4,7 +4,6 @@ module VagrantPlugins
|
||||||
module Arch
|
module Arch
|
||||||
module PacmanCacheDir
|
module PacmanCacheDir
|
||||||
def self.pacman_cache_dir(machine)
|
def self.pacman_cache_dir(machine)
|
||||||
# TODO: Find out if there is a config file we can read from
|
|
||||||
'/var/cache/pacman/pkg'
|
'/var/cache/pacman/pkg'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,6 @@ module VagrantPlugins
|
||||||
module Debian
|
module Debian
|
||||||
module AptCacheDir
|
module AptCacheDir
|
||||||
def self.apt_cache_dir(machine)
|
def self.apt_cache_dir(machine)
|
||||||
# TODO: Find out if there is a config file we can read from
|
|
||||||
'/var/cache/apt/archives'
|
'/var/cache/apt/archives'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -19,7 +19,6 @@ module VagrantPlugins
|
||||||
|
|
||||||
def self.chef_file_cache_path(machine)
|
def self.chef_file_cache_path(machine)
|
||||||
chef_file_cache_path = nil
|
chef_file_cache_path = nil
|
||||||
# TODO: Determine paths rather than using default.
|
|
||||||
chef_file_cache_path = '/var/chef/cache' if chef_provisioner?(machine)
|
chef_file_cache_path = '/var/chef/cache' if chef_provisioner?(machine)
|
||||||
|
|
||||||
return chef_file_cache_path
|
return chef_file_cache_path
|
||||||
|
|
|
@ -4,7 +4,6 @@ module VagrantPlugins
|
||||||
module RedHat
|
module RedHat
|
||||||
module YumCacheDir
|
module YumCacheDir
|
||||||
def self.yum_cache_dir(machine)
|
def self.yum_cache_dir(machine)
|
||||||
# TODO: Find out if there is a config file we can read from
|
|
||||||
'/var/cache/yum'
|
'/var/cache/yum'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,6 @@ module VagrantPlugins
|
||||||
module SuSE
|
module SuSE
|
||||||
module ZypperCacheDir
|
module ZypperCacheDir
|
||||||
def self.zypper_cache_dir(machine)
|
def self.zypper_cache_dir(machine)
|
||||||
# TODO: Find out if there is a config file we can read from
|
|
||||||
'/var/cache/zypp/packages'
|
'/var/cache/zypp/packages'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue