Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
enricovianello committed Mar 19, 2024
1 parent 27269b6 commit 010d2c9
Show file tree
Hide file tree
Showing 6 changed files with 404 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,7 @@ public interface OwnerStorageAreaInfo extends StorageAreaInfo, Config {
@DefaultValue("false")
public Boolean fineGrainedAuthzEnabled();

@Override
@DefaultValue("false")
public Boolean isTapeEnabled();
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,6 @@ public interface StorageAreaInfo {
public Boolean wlcgScopeAuthzEnabled();

public Boolean fineGrainedAuthzEnabled();

public Boolean isTapeEnabled();
}
25 changes: 25 additions & 0 deletions src/test/resources/conf/sa.d/tape.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# Copyright (c) Istituto Nazionale di Fisica Nucleare, 2018.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

name=tape
rootPath=src/test/resources/storage/tape
filesystemType=posixfs
accessPoints=/tape
vos=test.vo
authenticatedReadEnabled=true
anonymousReadEnabled=true
voMapGrantsWritePermission=false
isTapeEnabled=true
Loading

0 comments on commit 010d2c9

Please sign in to comment.