nis-util
1.0.D108
|
00001 // 00002 // nis-util - NIS Administration Utilities 00003 // Copyright (C) 2001, 2002, 2008, 2009, 2012 Peter Miller 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 2 of the License, or (at 00008 // your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 // General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 // 00018 00019 #include <lib/colon/passwd/slurp.h> 00020 #include <lib/space/hosts/slurp.h> 00021 #include <lib/space/netgroup/slurp.h> 00022 00023 #include <nis-util-netgroup/check.h> 00024 00025 00026 void 00027 check(const rcstring &etc_netgroup, const rcstring &etc_hosts, 00028 const rcstring &etc_passwd) 00029 { 00030 // 00031 // Read the passwd file. 00032 // 00033 colon_passwd_slurp::pointer passwd = colon_passwd_slurp::create(etc_passwd); 00034 passwd->read_and_process(); 00035 00036 // 00037 // Read the hosts file. 00038 // 00039 space_hosts_slurp::pointer hosts = space_hosts_slurp::create(etc_hosts); 00040 hosts->read_and_process(); 00041 00042 // 00043 // Read and validate the netgroup file. 00044 // 00045 space_netgroup_slurp::pointer netgroup = 00046 space_netgroup_slurp::create(etc_netgroup, hosts, passwd); 00047 netgroup->read_and_process(); 00048 } 00049 00050 00051 // vim: set ts=8 sw=4 et :