#!/usr/bin/python

#
# Copyright 2014 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public
# License as published by the Free Software Foundation; either version
# 2 of the License (GPLv2) or (at your option) any later version.
# There is NO WARRANTY for this software, express or implied,
# including the implied warranties of MERCHANTABILITY,
# NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should
# have received a copy of GPLv2 along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#

import optparse

from katello.packages import purge_package_cache, upload_package_profile


def parse_args():
    parser = optparse.OptionParser()
    parser.add_option('-f', '--force', help="Force package upload even if it does not seem out of date.", action='store_true')
    return parser.parse_args()


def main():
    (options, args) = parse_args()
    if options.force:
        purge_package_cache()
    upload_package_profile()


if __name__ == "__main__":
    main()
