Fix spelling mistake from apt::mirror class.
This commit is contained in:
parent
9905c67cc8
commit
90fa634241
1 changed files with 7 additions and 7 deletions
|
@ -32,16 +32,16 @@ class apt::mirror {
|
||||||
}
|
}
|
||||||
|
|
||||||
file { "/etc/apt/miror.list":
|
file { "/etc/apt/miror.list":
|
||||||
ensure => present,
|
ensure => present,
|
||||||
name => $operatingsystem ? {
|
name => $operatingsystem ? {
|
||||||
centos => "/etc/apt-mirror.list",
|
centos => "/etc/apt-mirror.list",
|
||||||
default => "/etc/apt/miror.list",
|
default => "/etc/apt/miror.list",
|
||||||
},
|
},
|
||||||
contents => template("apt/mirror.list.erb"),
|
content => template("apt/mirror.list.erb"),
|
||||||
mode => 0644,
|
mode => 0644,
|
||||||
owner => root,
|
owner => root,
|
||||||
group => root,
|
group => root,
|
||||||
require => Package["apt-mirror"],
|
require => Package["apt-mirror"],
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue