I am looking for answer on this. Even we are using isilon for home directory purpose. Users home directories are getting created automatically but I want to find a way to auto assign directory quota with container as yes 10gb size only on those folders which gets auto created as user home directories. Please let me know how to do this.
Peter_Sero
4 Operator
•
1.2K Posts
0
August 27th, 2014 01:00
prepare a script file, or type right in the shell (example for 10G size and OneFS 7 syntax);
for dir in /ifs/BBK3/Homes/*
do
isi quota quotas create "$dir" directory --hard-threshold 10G [more options]
done
Stefan_Thiede
1 Rookie
•
10 Posts
0
August 27th, 2014 02:00
Hi Peter,
thanks a lot. It works
na75369
20 Posts
0
September 9th, 2014 18:00
I am looking for answer on this. Even we are using isilon for home directory purpose. Users home directories are getting created automatically but I want to find a way to auto assign directory quota with container as yes 10gb size only on those folders which gets auto created as user home directories. Please let me know how to do this.
uid1
8 Posts
0
December 1st, 2019 13:00
Thank so much too!