42 lines
1.3 KiB
YAML
42 lines
1.3 KiB
YAML
---
|
|
|
|
argument_specs:
|
|
main:
|
|
short_description: "Setup the bareos repositories."
|
|
description: >
|
|
Install the BareOS repositories.
|
|
After applying this role, you can install bareos packages.
|
|
author: Robert de Bock
|
|
options:
|
|
bareos_repository_type:
|
|
type: "str"
|
|
default: community
|
|
description: "What type of Bareos to install, either 'community' or 'subscription'."
|
|
choices:
|
|
- community
|
|
- subscription
|
|
bareos_repository_username:
|
|
type: "str"
|
|
default: ""
|
|
description: "The subscription username for the repository."
|
|
bareos_repository_password:
|
|
type: "str"
|
|
default: ""
|
|
description: "The subscription password for the repository."
|
|
bareos_repository_release:
|
|
type: "str"
|
|
default: current
|
|
description: "What release to use, either 'current', 'next' or 'release'."
|
|
choices:
|
|
- current
|
|
- next
|
|
- release
|
|
bareos_repository_version:
|
|
type: "int"
|
|
default: 23
|
|
description: "The version of Bareos to install. Only affects `bareos_repository_type: subscription`."
|
|
bareos_repository_enable_tracebacks:
|
|
type: "bool"
|
|
default: false
|
|
description: "You can enable tracebacks for troubleshooting purposes."
|