#!/usr/bin/perl
# cpanel - autofixer2/nsswitch                    Copyright(c) 2012 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

# temporary fix for https://bugzilla.redhat.com/show_bug.cgi?id=846764
if ( -e '/etc/nsswitch.conf' && ( ( stat(_) )[2] & 0777 ) == 0600 ) {
    chmod 0644, '/etc/nsswitch.conf';
}
