/usr/bin/gonzui-update is in gonzui 1.2+cvs20070129-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | #! /usr/bin/ruby
#
# gonzui-update - a tool to update contents from a gonzui DB
#
# Copyright (C) 2004-2005 Satoru Takabayashi <satoru@namazu.org>
# All rights reserved.
# This is free software with ABSOLUTELY NO WARRANTY.
#
# You can redistribute it and/or modify it under the terms of
# the GNU General Public License version 2.
#
require 'getoptlong'
require 'gonzui'
require 'gonzui/cmdapp'
include Gonzui
include Gonzui::Util
class GonzuiUpdate < Gonzui::CommandLineApplication
def do_show_usage
puts "Usage: #{program_name} [OPTION]"
end
def do_get_option_table
[]
end
def do_process_options(options)
end
def do_start
parse_options()
ensure_db_directory_available
init_logger
show_progress = if @config.quiet then false else true end
updater = Updater.new(@config, :show_progress => show_progress)
begin
updater.update {|package_name|
@logger.log("updated %s", package_name)
}
print updater.summary
rescue GonzuiError => e
wprintf("%s", e.message)
ensure
updater.finish
end
end
end
GonzuiUpdate.start
|