Skip to content

Commit

Permalink
Merge pull request #9 from serenakeating/master
Browse files Browse the repository at this point in the history
fix so repo download occurs before install, need to anchor
  • Loading branch information
msimonin committed Feb 5, 2015
2 parents 5e01607 + 23da9a3 commit 0bb1d6a
Showing 1 changed file with 6 additions and 0 deletions.
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'],
require => Anchor['cassandra::repo::begin'],
}
}
'RedHat': {
Expand All @@ -28,10 +30,14 @@
gpgkey => $gpgkey,
gpgcheck => $gpgcheck,
enabled => $enabled,
before => Anchor['cassandra::repo::end'],
require => Anchor['cassandra::repo::begin'],
}
}
default: {
fail("OS family ${::osfamily} not supported")
}
}

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

0 comments on commit 0bb1d6a

Please sign in to comment.