Adrian
Adrian

Reputation: 335

In Perforce, how do I change a regular user into a super user?

This thread points to a webpage that no longer exists: How to change a perforce user to superuser

How do I change the Perforce Protections Table?

Upvotes: 0

Views: 4673

Answers (1)

Samwise
Samwise

Reputation: 71542

Run p4 protect, and add a line like:

    super user joe-bob * //...

Each protection entry has five parts:

  1. the access level (super)
  2. whether the entry is for a user or a group
  3. the name of the user/group (joe-bob)
  4. the client IP range this entry applies to (usually * for "everywhere")
  5. the depot path this entry applies to (there's no point in restricting super access to a narrow path since they have permission to edit the protection table themselves anyway, so for super entries this is almost always //...).

Upvotes: 2

Related Questions