Skip to content

Commit

Permalink
Add reference
Browse files Browse the repository at this point in the history
Signed-off-by: Salvatore Mazzarino <[email protected]>
  • Loading branch information
mazzy89 committed Nov 24, 2019
1 parent f690865 commit 9732d06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nodeup/pkg/model/miscutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ func (b *MiscUtilsBuilder) Build(c *fi.ModelBuilderContext) error {
case distros.DistributionCoreOS:
klog.V(2).Infof("Detected CoreOS; won't install misc. utils")
return nil
case distros.DistributionFlatcar:
klog.V(2).Infof("Detected Flatcar; won't install misc. utils")
return nil
}

// TODO: These packages have been auto-installed for a long time, and likely we don't need all of them any longer
Expand Down
3 changes: 3 additions & 0 deletions nodeup/pkg/model/ntp.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ func (b *NTPBuilder) Build(c *fi.ModelBuilderContext) error {
case distros.DistributionCoreOS:
klog.Infof("Detected CoreOS; won't install ntp")
return nil
case distros.DistributionFlatcar:
klog.Infof("Detected CoreOS; won't install ntp")
return nil
}

if b.Distribution.IsDebianFamily() {
Expand Down

0 comments on commit 9732d06

Please sign in to comment.