#!/usr/bin/perl

#######################################################################
#
# argonaut-quota
#
# Copyright (C) 2011-2014 FusionDirectory project
#
# Author: Côme BERNIGAUD
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>
#
#######################################################################

use strict;
use warnings;

use 5.008;

use Argonaut::Libraries::Common qw(:config);
use Argonaut::Libraries::Quota qw(get_quota_settings write_warnquota_file write_quotatab_file apply_quotas);

my $warnquota_file  = "/etc/warnquota.conf";
my $quotatab_file   = "/etc/quotatab";
my $config = argonaut_read_config;

my $settings = get_quota_settings($config,$config->{'client_ip'});

write_warnquota_file ($settings,$warnquota_file);
write_quotatab_file ($settings,$quotatab_file);

apply_quotas ($config,$settings->{'hostname'});

__END__

=head1 NAME

argonaut-apply-quota - applying quota from data stored in the ldap server

=head1 SYNOPSIS

argonaut-quota

=head1 DESCRIPTION

argonaut-quota is a program used to apply quota on server based on the data stored in the ldap server

=head1 BUGS

Please report any bugs, or post any suggestions, to the fusiondirectory mailing list fusiondirectory-users or to
<https://forge.fusiondirectory.org/projects/argonaut-agents/issues/new>

=head1 LICENCE AND COPYRIGHT

This code is part of FusionDirectory <http://www.fusiondirectory.org>

=over 1

=item Copyright (C) 2011-2014 FusionDirectory project

=back

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

=cut
