项目作者: C-Duv

项目描述 :
Chocolatey package for Bareos Windows File daemon (http://www.bareos.org)
高级语言: PowerShell
项目地址: git://github.com/C-Duv/chocolatey-winbareos.git
创建时间: 2014-05-17T23:18:38Z
项目社区:https://github.com/C-Duv/chocolatey-winbareos

开源协议:GNU General Public License v3.0

下载


chocolatey-winbareos

Chocolatey package for Bareos Windows File daemon.

This will silently install Bareos (a client/server backup solution) File daemon on Windows operating systems via Chocolatey Machine Package Manager.

Usage examples

:exclamation: Chocolatey is required to use the winbareos Chocolatey package, see installation instructions.

:grey_exclamation: Cloning of this repository is not required to use it: packages are stored on Chocolatey server

  • Run File daemon installer with defaults settings:

    1. choco install winbareos
  • Run File daemon installer with custom settings by providing the installer some command line switches (via Chocolatey -installArgs option):

    • Set the name of the Bareos Director (server) to use and the password it should use to access this File daemon (otherwise installer generates a random password):

      1. choco install winbareos -installArgs '/DIRECTORNAME=mycompany-bareos-dir /CLIENTPASSWORD=SecretPassword'
    • PowerShell version that uses machine’s domain (Windows AD) to set the Director name and address accordingly, also sets the network address of the client:

      1. choco install winbareos -installArgs '/DIRECTORNAME=' + $env:userdnsdomain + '-bareos-dir /DIRECTORADDRESS=bareos.' + $env:userdnsdomain + ' /CLIENTADDRESS=' + $env:ComputerName.ToLower() + '.' + $env:userdnsdomain

      The list of available command line switches can be found on the Bareos manual (section 26.1.2 Command Line (Silent) Installation).
      The additional /CLIENTCOMPATIBLE switch exists to enable Bacula-compatible mode (/CLIENTCOMPATIBLE=1) or to disable it (/CLIENTCOMPATIBLE=0).