On 15 February 2013 10:04, joe <lava...@gmail.com> wrote:

> Puppet isn't particularly good at code deployment. Ideally, you'd package
> your code, set a package resource to ensure => latest, then update your
> package repo with the new code. Then, all the resources that subscribe to
> that package (services, etc.) would be refreshed when the package gets
> updated in your repo.


I disagree.
I use puppet for managing code deployments.
I tend to use svn or git to roll it out because our internal software is a
moving target and not well suited to packages and because it can be
deployed multiple times on a node.
Yes I realise I could use a package for that but I find it easier to use a
source code management system.
Updating is a simple process of updating one variable that specifies the
tag to update to.


>
> On Thursday, February 14, 2013 1:49:42 PM UTC-7, John Coggeshall wrote:
>>
>> Hello all,
>>
>> I'm using puppet to deploy my codebase from GIT. I have everything
>> working, but i currently don't have any way to check to make sure there is
>> actually something TO deploy before it goes through the entire process of
>> deploying the code. I want to create a conditional that only re-deploys the
>> code if the revision actually changed.
>>
>> So far, I can have it as part of the deploy process write the contents of
>> 'git rev-parse HEAD' to a file, this way I can do something like this from
>> BASH:
>>
>> [ `cat git-current-hash` != `git rev-parse HEAD` ]
>>
>> which will return true only if there is a new revision to pull. The
>> question is, how do I conditional include many different file {} and other
>> things only if that condition is true? If this was just an exec{} I could
>> use onlyif.
>>
>> John
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to puppet-users+unsubscr...@googlegroups.com.
> To post to this group, send email to puppet-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to