Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix so repo download occurs before install, need to anchor #9

Merged
merged 1 commit into from
Feb 5, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions manifests/repo.pp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
key => $key_id,
key_source => $gpgkey,
pin => $pin,
before => Anchor['cassandra::repo::end'],
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't we write :

before => Package['dsc']

to force the source list to be updated before the package installation ?

require => Anchor['cassandra::repo::begin'],
}
}
'RedHat': {
Expand All @@ -28,10 +30,14 @@
gpgkey => $gpgkey,
gpgcheck => $gpgcheck,
enabled => $enabled,
before => Anchor['cassandra::repo::end'],
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same here ?

require => Anchor['cassandra::repo::begin'],
}
}
default: {
fail("OS family ${::osfamily} not supported")
}
}

anchor {'cassandra::repo::begin': } -> anchor {'cassandra::repo::end': }
}