Reputation: 37
I need to add a source to an element so that operations like modified or checkout the file is prevented after the element is added. Is that possible? How should the permissions be set to achieve this?
Upvotes: 1
Views: 69
Reputation: 1329082
On that file, you try and lock it (if you are the owner):
cleartool lock yourFile@@
(note the @@ to impact the element, not the version)
See cleartool lock
.
That works if you are the owner of that object (if you added it yourself).
So it isn't so much a "permission" issue (as in chmod
); rather a lock issue.
See more at the section "Locks on VOB objects" of the article "VOB and view access control".
Upvotes: 0