[web2py] puppet for web2py

2013-08-28 Thread Francisco Barretto
Hi there!

Did Anyone already made some puppet module to manage/install web2py and 
web2py's app management(install/update) through Puppet? I was thinking 
about hosting my app in a git repository and use a puppet module to keep 
web2py updated (by applying both web2py and app changes to client machines).

Thanks

-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [web2py] puppet for web2py

2013-08-28 Thread Vinicius Assef
I don't know puppet, but this weekend I'll be doing it through shell
script, to one customer.

On Wed, Aug 28, 2013 at 11:28 AM, Francisco Barretto
kikobarre...@gmail.com wrote:
 Hi there!

 Did Anyone already made some puppet module to manage/install web2py and
 web2py's app management(install/update) through Puppet? I was thinking about
 hosting my app in a git repository and use a puppet module to keep web2py
 updated (by applying both web2py and app changes to client machines).

 Thanks

 --

 ---
 You received this message because you are subscribed to the Google Groups
 web2py-users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to web2py+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [web2py] puppet for web2py

2013-08-28 Thread Francisco Barretto
There is a .sh provided along with the web2py distribution for install 
purposes. The main thing is that when you do it through puppet (
http://puppetlabs.com/) and your machine goes bad for any reason you just 
have to apply your puppet again. Or if you want to replicate your app into 
X new machines, just apply the puppet.

imagine that you have to create a b machine so you can balance your 
incoming requests. It is quite hard to keep them synchronized manually. 
Puppet allows you to puppetize the configuration and apply at both 
machines. That's why I'm interested in using puppet.

If anybody has ever tried to apply puppet for web2py management, please 
send me a smoke signal! :)

Em quarta-feira, 28 de agosto de 2013 11h31min44s UTC-3, viniciusban 
escreveu:

 I don't know puppet, but this weekend I'll be doing it through shell 
 script, to one customer. 

 On Wed, Aug 28, 2013 at 11:28 AM, Francisco Barretto 
 kikoba...@gmail.com javascript: wrote: 
  Hi there! 
  
  Did Anyone already made some puppet module to manage/install web2py and 
  web2py's app management(install/update) through Puppet? I was thinking 
 about 
  hosting my app in a git repository and use a puppet module to keep 
 web2py 
  updated (by applying both web2py and app changes to client machines). 
  
  Thanks 
  
  -- 
  
  --- 
  You received this message because you are subscribed to the Google 
 Groups 
  web2py-users group. 
  To unsubscribe from this group and stop receiving emails from it, send 
 an 
  email to web2py+un...@googlegroups.com javascript:. 
  For more options, visit https://groups.google.com/groups/opt_out. 


-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [web2py] puppet for web2py

2013-08-28 Thread nils
Hi,

You should take a look a http://docs.saltstack.com/ref/python-api.html

This is like fabric and puppet all in one and its really easy to use.

Regards,

Nils



On Wed, Aug 28, 2013 at 3:28 PM, Francisco Barretto
kikobarre...@gmail.comwrote:

 Hi there!

 Did Anyone already made some puppet module to manage/install web2py and
 web2py's app management(install/update) through Puppet? I was thinking
 about hosting my app in a git repository and use a puppet module to keep
 web2py updated (by applying both web2py and app changes to client machines).

 Thanks

 --

 ---
 You received this message because you are subscribed to the Google Groups
 web2py-users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to web2py+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [web2py] puppet for web2py

2013-08-28 Thread Francisco Barretto
The main thing is that everything else is puppetized here... it would be 
probably better if it could fit in smoothly through puppet. It is possible 
to implement everything from scratch but it's a lot of work. 

Em quarta-feira, 28 de agosto de 2013 13h04min02s UTC-3, nils escreveu:

 Hi,

 You should take a look a http://docs.saltstack.com/ref/python-api.html 

 This is like fabric and puppet all in one and its really easy to use.

 Regards,

 Nils



 On Wed, Aug 28, 2013 at 3:28 PM, Francisco Barretto 
 kikoba...@gmail.comjavascript:
  wrote:

 Hi there!

 Did Anyone already made some puppet module to manage/install web2py and 
 web2py's app management(install/update) through Puppet? I was thinking 
 about hosting my app in a git repository and use a puppet module to keep 
 web2py updated (by applying both web2py and app changes to client machines).

 Thanks

 -- 
  
 --- 
 You received this message because you are subscribed to the Google Groups 
 web2py-users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to web2py+un...@googlegroups.com javascript:.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [web2py] puppet for web2py

2013-08-28 Thread Vinicius Assef
Puppet is a provisioning system.

All provisioning can be done with shell script and I'm doing this in
Vagrant development environments.

On Wed, Aug 28, 2013 at 12:59 PM, Francisco Barretto
kikobarre...@gmail.com wrote:
 There is a .sh provided along with the web2py distribution for install
 purposes. The main thing is that when you do it through puppet
 (http://puppetlabs.com/) and your machine goes bad for any reason you just
 have to apply your puppet again. Or if you want to replicate your app into X
 new machines, just apply the puppet.

 imagine that you have to create a b machine so you can balance your
 incoming requests. It is quite hard to keep them synchronized manually.
 Puppet allows you to puppetize the configuration and apply at both
 machines. That's why I'm interested in using puppet.

 If anybody has ever tried to apply puppet for web2py management, please send
 me a smoke signal! :)

 Em quarta-feira, 28 de agosto de 2013 11h31min44s UTC-3, viniciusban
 escreveu:

 I don't know puppet, but this weekend I'll be doing it through shell
 script, to one customer.

 On Wed, Aug 28, 2013 at 11:28 AM, Francisco Barretto
 kikoba...@gmail.com wrote:
  Hi there!
 
  Did Anyone already made some puppet module to manage/install web2py and
  web2py's app management(install/update) through Puppet? I was thinking
  about
  hosting my app in a git repository and use a puppet module to keep
  web2py
  updated (by applying both web2py and app changes to client machines).
 
  Thanks
 
  --
 
  ---
  You received this message because you are subscribed to the Google
  Groups
  web2py-users group.
  To unsubscribe from this group and stop receiving emails from it, send
  an
  email to web2py+un...@googlegroups.com.
  For more options, visit https://groups.google.com/groups/opt_out.

 --

 ---
 You received this message because you are subscribed to the Google Groups
 web2py-users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to web2py+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.

-- 

--- 
You received this message because you are subscribed to the Google Groups 
web2py-users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.