1 /* BEGIN INCLUDE FILE ... sys_admin_data.incl.pl1 */ 2 3 /* This data base is writeable by all system administrators. 4 It resides in the working directory of the system administrators. 5 The important item in this data base is "lock", which is used to prevent 6 two administrators from modifying the system administration data bases simultaneously. */ 7 8 /* Modified 1984-12-14 by EJ Sharpe to add default_audit_flags, and remove log_control */ 9 10 dcl 1 sys_admin_data based (sadp) aligned, 11 2 lock bit (36), 12 2 locker char (24), /* name of person using table */ 13 2 sadxx fixed bin, 14 2 time_locked fixed bin (71), 15 2 pntno fixed bin, 16 2 pnt_entries_to_install bit (1), 17 2 smf_entries_to_install bit (1), 18 2 pad1 (97) fixed bin, /* was log_control stuff before MR11 */ 19 2 user_accounts_office char (64), 20 2 user_accounts_addr char (64), 21 2 user_accounts_phone char (16), 22 2 mailing_banner (3) char (10), /* Used by mailing_page_ */ 23 2 default_proj_attributes bit (36), /* Used by new_proj */ 24 2 default_proj_ring1 fixed bin, /* .. */ 25 2 default_proj_ring2 fixed bin, /* .. */ 26 2 default_proj_group char (8), /* .. */ 27 2 default_proj_grace fixed bin, /* .. */ 28 2 default_audit_flags bit (36) aligned; /* initial set of flags for new_user and edit_proj */ 29 30 /* END INCLUDE FILE .. sys_admin_data.incl.pl1 */