Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Remove invalid NTP configuration in templates
Browse files Browse the repository at this point in the history
Currently the all templates have an invalid setting for NTP
setup for the fudge setting. This should be removed from
the templates which will remove the warning seen in syslog.

ntpd[...]: inappropriate address xxx.xxx.xxx.xxx for the
    fudge command, line ignored

Partial-Bug: 1408379
Relates-To: Ib9931b84925d9ceb32f18e9adc5be64402fbf61e
Change-Id: I56a03dc0a899a8c515f2a05d678d7e80e9b7b93c
  • Loading branch information
Nicholas Randon committed Jan 8, 2015
1 parent e38535b commit 42a3b36
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion compute-config.yaml
Expand Up @@ -68,7 +68,7 @@ resources:
password: {get_input: rabbit_password}
ntp:
servers:
- {server: {get_input: ntp_server}, fudge: "stratum 0"}
- {server: {get_input: ntp_server}}

outputs:
config_id:
Expand Down
2 changes: 1 addition & 1 deletion controller-config.yaml
Expand Up @@ -128,7 +128,7 @@ resources:
rabbit_port: {get_input: rabbit_client_port}
ntp:
servers:
- {server: {get_input: ntp_server}, fudge: "stratum 0"}
- {server: {get_input: ntp_server}}
virtual_interfaces:
instances:
- vrrp_instance_name: VI_CONTROL
Expand Down
2 changes: 1 addition & 1 deletion nova-compute-config.yaml
Expand Up @@ -55,7 +55,7 @@ resources:
password: {get_input: rabbit_password}
ntp:
servers:
- {server: {get_input: ntp_server}, fudge: "stratum 0"}
- {server: {get_input: ntp_server}}
NovaComputePassthrough:
type: OS::Heat::StructuredConfig
properties:
Expand Down
2 changes: 1 addition & 1 deletion overcloud-source.yaml
Expand Up @@ -688,7 +688,7 @@ resources:
rabbit_port: {get_param: RabbitClientPort}
ntp:
servers:
- {server: {get_param: NtpServer}, fudge: "stratum 0"}
- {server: {get_param: NtpServer}}
virtual_interfaces:
instances:
- vrrp_instance_name: VI_CONTROL
Expand Down
2 changes: 1 addition & 1 deletion undercloud-source.yaml
Expand Up @@ -346,7 +346,7 @@ resources:
- value
ntp:
servers:
- {server: {get_param: NtpServer}, fudge: "stratum 0"}
- {server: {get_param: NtpServer}}
undercloudPassthroughConfig:
type: OS::Heat::StructuredConfig
properties:
Expand Down

0 comments on commit 42a3b36

Please sign in to comment.