diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-08-09 04:19:18 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-08-09 04:19:18 +0000 |
commit | db2445358161e1a0a68b80a7551ed88e7dcc38c6 (patch) | |
tree | 9d08fa26605850fc3bf3e890bfd36208bf1f280d /source3/param | |
parent | 0756908d555438429aa5c5657fff0b8f09689d36 (diff) | |
download | samba-db2445358161e1a0a68b80a7551ed88e7dcc38c6.tar.gz samba-db2445358161e1a0a68b80a7551ed88e7dcc38c6.tar.bz2 samba-db2445358161e1a0a68b80a7551ed88e7dcc38c6.zip |
added printer admin option
any user in that list can do anything to a printer
(This used to be commit 7b5912be150dd590d6195be40b0976305b8716ba)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 318c1ea534..17a109dd06 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -308,6 +308,7 @@ typedef struct char *force_group; char *readlist; char *writelist; + char *printer_admin; char *volume; char *fstype; char *szVfsObjectFile; @@ -420,6 +421,7 @@ static service sDefault = { NULL, /* force group */ NULL, /* readlist */ NULL, /* writelist */ + NULL, /* printer admin */ NULL, /* volume */ NULL, /* fstype */ NULL, /* vfs object */ @@ -669,6 +671,7 @@ static struct parm_struct parm_table[] = { {"admin users", P_STRING, P_LOCAL, &sDefault.szAdminUsers, NULL, NULL, FLAG_GLOBAL | FLAG_SHARE}, {"read list", P_STRING, P_LOCAL, &sDefault.readlist, NULL, NULL, FLAG_GLOBAL | FLAG_SHARE}, {"write list", P_STRING, P_LOCAL, &sDefault.writelist, NULL, NULL, FLAG_GLOBAL | FLAG_SHARE}, + {"printer admin", P_STRING, P_LOCAL, &sDefault.printer_admin, NULL, NULL, FLAG_GLOBAL | FLAG_SHARE}, {"force user", P_STRING, P_LOCAL, &sDefault.force_user, NULL, NULL, FLAG_SHARE}, {"force group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, FLAG_SHARE}, {"group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, 0}, @@ -1495,6 +1498,7 @@ FN_LOCAL_STRING(lp_force_user, force_user) FN_LOCAL_STRING(lp_force_group, force_group) FN_LOCAL_STRING(lp_readlist, readlist) FN_LOCAL_STRING(lp_writelist, writelist) +FN_LOCAL_STRING(lp_printer_admin, printer_admin) FN_LOCAL_STRING(lp_fstype, fstype) FN_LOCAL_STRING(lp_vfsobj, szVfsObjectFile) static FN_LOCAL_STRING(lp_volume, volume) |