Hi, What do each resource flag mean when we create new resources- The documentation says “Resource flags can be n,h,q,f,nh,fh.” But it doesn’t explain what each one of them mean and when to use them. :
2.49.6.9 Setting Custom Resource Type and Flag(s)
You can use the qmgr command to set the type and flag(s) for custom resources. Resource type can be:
string
boolean
string_array
long
size
float
Resource flags can be:
n
h
q
f
nh
fh
set resource type =
Sets the type of the named resource to the specified type. For example:
qmgr -c “set resource foo type=string_array”
set resource flag = <flag(s)>
Sets the flag(s) of the named resource to the specified flag(s). For example:
qmgr -c “set resource foo flag=nh”
set resource type=, flag = <flag(s)>
Sets the type and flag(s) of the named resource to the specified type and flag(s). For example:
qmgr -c “set resource foo type=long,flag=nh”
I want to create a string_array resource which will contain names of some applications of interest installed on each system in the pbs network. Which flag should I use?