Skip to content
Snippets Groups Projects
Commit 7154fd85 authored by Riccardo Bucchi's avatar Riccardo Bucchi
Browse files

syntax error in metadata.json and removed some packages unused in base.pp

parent 97911e0d
No related branches found
No related tags found
1 merge request!8Development
...@@ -25,16 +25,16 @@ class iaas::profile::base ( ...@@ -25,16 +25,16 @@ class iaas::profile::base (
} }
# VLAN module # VLAN module
package { 'vlan': } # package { 'vlan': }
kmod::load {'8021q': # kmod::load {'8021q':
require => Package['vlan'] # require => Package['vlan']
} # }
# NTP # # NTP
class { '::ntp': # class { '::ntp':
servers => $ntp_servers, # servers => $ntp_servers,
restrict => ['127.0.0.1'], # restrict => ['127.0.0.1'],
} # }
# Network # Network
class { 'resolv_conf': class { 'resolv_conf':
...@@ -43,23 +43,23 @@ class iaas::profile::base ( ...@@ -43,23 +43,23 @@ class iaas::profile::base (
} }
# SSH # SSH
class { 'ssh::server': # class { 'ssh::server':
storeconfigs_enabled => false, # storeconfigs_enabled => false,
options => { # options => {
'PermitRootLogin' => 'yes', # 'PermitRootLogin' => 'yes',
'Port' => [22], # 'Port' => [22],
} # }
} # }
file { "/root/.ssh": # file { "/root/.ssh":
ensure => "directory", # ensure => "directory",
owner => "root", # owner => "root",
group => "root", # group => "root",
mode => 755, # mode => 755,
} # }
file { '/root/.ssh/authorized_keys2': # file { '/root/.ssh/authorized_keys2':
owner => root, # owner => root,
group => root, # group => root,
mode => 644, # mode => 644,
content => $ssh_public_key # content => $ssh_public_key
} # }
} }
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
{"name":"saz/timezone"}, {"name":"saz/timezone"},
{"name":"arioch/keepalived"}, {"name":"arioch/keepalived"},
{"name":"richardc/datacat"}, {"name":"richardc/datacat"},
{"name":"deric/zookeeper"} {"name":"deric/zookeeper"},
{"name":"camptocamp/kmod"}, {"name":"camptocamp/kmod"},
{"name":"puppetlabs/haproxy"}, {"name":"puppetlabs/haproxy"},
{"name":"puppetlabs/postgresql","version_requirement":"4.0.0"} {"name":"puppetlabs/postgresql","version_requirement":"4.0.0"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment