Bacula-users

Re: [Bacula-users] Bacula, chocolatey and homebrew

2013-12-02 17:13:00
Subject: Re: [Bacula-users] Bacula, chocolatey and homebrew
From: "Robert M. Candey" <Robert.M.Candey AT nasa DOT gov>
To: Julien Cochennec <julien.cochennec AT mnhn DOT fr>, <bacula-users AT lists.sourceforge DOT net>
Date: Mon, 2 Dec 2013 17:10:02 -0500
For Macs, I find it easier to make an installer package than a brew install:

For the latest MacOS X, I added to postflight.in:
        mkdir -p -m 0755 /usr/local/var

add to autoconf/confdefs.h (or crc32.c):
        #define HAVE_LITTLE_ENDIAN 1
since it wasn't getting defined for some reason.

Then do:
./configure --enable-client-only --without-tcp-wrappers --disable-conio
make -C platforms/osx

and it makes a .dmg file that you can copy around to various clients.

Robert Candey

The contents of this message are mine personally and do not reflect 
any position of the US Government or NASA.

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

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?

------------------------------------------------------------------------------
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>
  • Re: [Bacula-users] Bacula, chocolatey and homebrew, Robert M. Candey <=