to add pac_settings before cmon interface is ready:
INSERT INTO pac_settings  (type,id,multiplier,quota_m,quota_w,quota_d,quota_s,threshold_y,threshold_o,threshold_r) VALUES ...
example:

INSERT INTO pac_settings  (type,id,quota_d) VALUES  ("30","GV080027AD75EB:0","60");

NOTE: multiplier does not change time "quotas" - it changes how fast the quota is used up.  So if you have a multiplier of 0.5 then a quota of 30 "units" will get used up after 60 minutes.

#change certain machines to have 60 minute session quotas
# for T in GV0021705641AF GV00217056417F  ; do echo "INSERT INTO settings (type,id,quota_d,quota_s) VALUES (\"30\",\"$T:0\",\"60\",\"15\");" ; done
INSERT INTO settings  (type,id,quota_s) VALUES  ("30","GV0021705641AF:0","60");
INSERT INTO settings  (type,id,quota_s) VALUES  ("30","GV00217056417F:0","60");

#catalog user no daily quota limit
INSERT INTO settings (type,id,quota_d) VALUES ("50","catalog","-1");

