Bacula-users

[Bacula-users] Bacula, chocolatey and homebrew

2013-11-28 11:34:55
Subject: [Bacula-users] Bacula, chocolatey and homebrew
From: Julien Cochennec <julien.cochennec AT mnhn DOT fr>
To: bacula-users AT lists.sourceforge DOT net
Date: Thu, 28 Nov 2013 17:09:50 +0100
Hi,

1) Homebrew
I'd like to install bacula-fd on Mac computers easily, therefore I had a 
look at Macports, Fink and Homebrew, and Homebrew is definitely the 
fastest tool here, so I'd like to install Bacula with Homebrew. Is there 
anyone who has tried this yet?
Bacula is in homebrew formulas but only in version 5.2.13 as you can see 
in this script :

require  'formula'

class  BaculaFd  <  Formula
   url  
'http://downloads.sourceforge.net/project/bacula/bacula/5.2.12/bacula-5.2.12.tar.gz'
   homepage  'http://www.bacula.org/'
   md5  'b04c22b128b73359e4bbc9de06652c38'

   def  install
     system  "./configure",  "--prefix=#{prefix}",  "--sbindir=#{bin}",
                           "--with-working-dir=#{prefix}/working",
                           "--with-pid-dir=#{HOMEBREW_PREFIX}/var/run",
                           "--enable-client-only",
                           "--disable-conio"
     system  "make"
     system  "make install"

     # Ensure var/run exists:
     (var  +  'run').mkpath
   end

end

Is there a way to install bacula 5.2.6 by modifying this script? Do I 
have to change the MD5 parameter if I replace the 5.2.12 parameter?

2) Chocolatey
Same question for chocolatey, has anyone succeeded in installing 
Bacula-fd on windows (>=7) with chocolatey?

3) Is installing 5.2.13 version of bacula on the Debian server a good 
idea? Or is it to early?

-- 
Julien Cochennec
Ingénieur d'études
Système et Développement Python/R/Java/Php
MNHN / CNRS 7196 / INSERM U565 / Structure et instabilité des génomes
Tél 01 40 79 36 95 / 06 04 19 31 02


------------------------------------------------------------------------------
Rapidly troubleshoot problems before they affect your business. Most IT 
organizations don't have a clear picture of how application performance 
affects their revenue. With AppDynamics, you get 100% visibility into your 
Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro!
http://pubads.g.doubleclick.net/gampad/clk?id=84349351&iu=/4140/ostg.clktrk
_______________________________________________
Bacula-users mailing list
Bacula-users AT lists.sourceforge DOT net
https://lists.sourceforge.net/lists/listinfo/bacula-users

<Prev in Thread] Current Thread [Next in Thread>
  • [Bacula-users] Bacula, chocolatey and homebrew, Julien Cochennec <=