|
HTCondor doesnât have a special option for this case, but you can implement it as part of the START _expression_ for the node:
AllowedUsers = "alice@xxxxxxx, bob@xxxxxxx, charles@xxxxxxx" STARTD_ATTRS = $(STARTD_ATTRS) AllowedUsers
START = $(START) && StringListMember(TARGET.User, AllowedUsers)
- Jaime
|