Skip to content

Commit

Permalink
systemtest config-dump: adapt to CamelCase
Browse files Browse the repository at this point in the history
Adapts the systemtest to the fact,
that all ACL config directives are now defined in proper CamelCase.
  • Loading branch information
joergsteffens committed Nov 30, 2021
1 parent 860a476 commit fa77590
Showing 1 changed file with 60 additions and 60 deletions.
120 changes: 60 additions & 60 deletions systemtests/tests/config-dump/etc/bareos/bareos-dir-full.conf.in
Original file line number Diff line number Diff line change
Expand Up @@ -1290,62 +1290,62 @@ Messages {
Profile {
Name = "webui-readonly"
# Description =
JobACL = "*all*"
ClientACL = "*all*"
StorageACL = "*all*"
ScheduleACL = "*all*"
PoolACL = "*all*"
CommandACL = ".api", ".help", "use", "version", "status", "list", "llist", ".clients", ".jobs", ".filesets", ".pools", ".storages", ".defaults", ".schedule", ".bvfs_lsdirs", ".bvfs_lsfiles", ".bvfs_update", ".bvfs_get_jobids", ".bvfs_versions", ".bvfs_restore"
FileSetACL = "*all*"
CatalogACL = "*all*"
WhereACL = "*all*"
# PluginOptionsACL =
JobAcl = "*all*"
ClientAcl = "*all*"
StorageAcl = "*all*"
ScheduleAcl = "*all*"
PoolAcl = "*all*"
CommandAcl = ".api", ".help", "use", "version", "status", "list", "llist", ".clients", ".jobs", ".filesets", ".pools", ".storages", ".defaults", ".schedule", ".bvfs_lsdirs", ".bvfs_lsfiles", ".bvfs_update", ".bvfs_get_jobids", ".bvfs_versions", ".bvfs_restore"
FileSetAcl = "*all*"
CatalogAcl = "*all*"
WhereAcl = "*all*"
# PluginOptionsAcl =
}

Profile {
Name = "webui-admin"
# Description =
JobACL = "*all*"
ClientACL = "*all*"
StorageACL = "*all*"
ScheduleACL = "*all*"
PoolACL = "*all*"
CommandACL = "!.bvfs_clear_cache", "!.exit", "!.sql", "!configure", "!create", "!delete", "!purge", "!prune", "!sqlquery", "!umount", "!unmount", "*all*"
FileSetACL = "*all*"
CatalogACL = "*all*"
WhereACL = "*all*"
# PluginOptionsACL =
JobAcl = "*all*"
ClientAcl = "*all*"
StorageAcl = "*all*"
ScheduleAcl = "*all*"
PoolAcl = "*all*"
CommandAcl = "!.bvfs_clear_cache", "!.exit", "!.sql", "!configure", "!create", "!delete", "!purge", "!prune", "!sqlquery", "!umount", "!unmount", "*all*"
FileSetAcl = "*all*"
CatalogAcl = "*all*"
WhereAcl = "*all*"
# PluginOptionsAcl =
}

Profile {
Name = "operator"
Description = "Profile allowing normal Bareos operations."
JobACL = "*all*"
ClientACL = "*all*"
StorageACL = "*all*"
ScheduleACL = "*all*"
PoolACL = "*all*"
CommandACL = "!.bvfs_clear_cache", "!.exit", "!.sql", "!configure", "!create", "!delete", "!purge", "!prune", "!sqlquery", "!umount", "!unmount", "*all*"
FileSetACL = "*all*"
CatalogACL = "*all*"
WhereACL = "*all*"
PluginOptionsACL = "*all*"
JobAcl = "*all*"
ClientAcl = "*all*"
StorageAcl = "*all*"
ScheduleAcl = "*all*"
PoolAcl = "*all*"
CommandAcl = "!.bvfs_clear_cache", "!.exit", "!.sql", "!configure", "!create", "!delete", "!purge", "!prune", "!sqlquery", "!umount", "!unmount", "*all*"
FileSetAcl = "*all*"
CatalogAcl = "*all*"
WhereAcl = "*all*"
PluginOptionsAcl = "*all*"
}

Console {
Name = "bareos-mon"
Description = "Restricted console used by tray-monitor to get the status of the director."
Password = "[md5]4cf5943929b8447731b086f0f43f7f99"
JobACL = "*all*"
# ClientACL =
# StorageACL =
# ScheduleACL =
# PoolACL =
CommandACL = "status", ".status"
# FileSetACL =
# CatalogACL =
# WhereACL =
# PluginOptionsACL =
JobAcl = "*all*"
# ClientAcl =
# StorageAcl =
# ScheduleAcl =
# PoolAcl =
CommandAcl = "status", ".status"
# FileSetAcl =
# CatalogAcl =
# WhereAcl =
# PluginOptionsAcl =
# Profile =
# UsePamAuthentication = No
# TlsAuthenticate = No
Expand All @@ -1367,16 +1367,16 @@ Console {
Name = "admin"
# Description =
Password = "[md5]5ebe2294ecd0e0f08eab7690d2a6ee69"
# JobACL =
# ClientACL =
# StorageACL =
# ScheduleACL =
# PoolACL =
# CommandACL =
# FileSetACL =
# CatalogACL =
# WhereACL =
# PluginOptionsACL =
# JobAcl =
# ClientAcl =
# StorageAcl =
# ScheduleAcl =
# PoolAcl =
# CommandAcl =
# FileSetAcl =
# CatalogAcl =
# WhereAcl =
# PluginOptionsAcl =
Profile = "webui-admin"
# UsePamAuthentication = No
# TlsAuthenticate = No
Expand All @@ -1398,16 +1398,16 @@ Console {
# Name = "*UserAgent*"
# Description = "root console definition"
# Password = "[md5]19c05ce71554a186e052ee6bfadcde4a"
# JobACL =
# ClientACL =
# StorageACL =
# ScheduleACL =
# PoolACL =
# CommandACL =
# FileSetACL =
# CatalogACL =
# WhereACL =
# PluginOptionsACL =
# JobAcl =
# ClientAcl =
# StorageAcl =
# ScheduleAcl =
# PoolAcl =
# CommandAcl =
# FileSetAcl =
# CatalogAcl =
# WhereAcl =
# PluginOptionsAcl =
# Profile =
# UsePamAuthentication = No
# TlsAuthenticate = No
Expand Down

0 comments on commit fa77590

Please sign in to comment.