⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amdevcheck.pl

📁 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a
💻 PL
字号:
#! @PERL@use lib '@amperldir@';use strict;use Amanda::Device qw( :constants );use Amanda::Config qw( :getconf :init );use Amanda::Debug qw( :logging );use Amanda::Util qw( :running_as_flags );# try to open the device and read its label, returning the device_read_label# result (one or more of ReadLabelStatusFlags)sub try_read_label {    my ($device_name) = @_;    if ( !$device_name ) {        return $READ_LABEL_STATUS_DEVICE_MISSING;    }    my $device = Amanda::Device->new($device_name);    if ( !$device ) {        return $READ_LABEL_STATUS_DEVICE_MISSING             | $READ_LABEL_STATUS_DEVICE_ERROR;    }    $device->set_startup_properties_from_config();    return $device->read_label();}# print the results, one flag per linesub print_result {    my ($flags) = @_;    print join( "\n", ReadLabelStatusFlags_to_strings($flags) ), "\n";}sub usage {    print <<EOF;Usage: amdevcheck <config> [ <device name> ]EOF    exit(1);}## Application initializationAmanda::Util::setup_application("amdevcheck", "server", "cmdline");usage() if ( @ARGV < 1 || @ARGV > 2 );my $config_name = $ARGV[0];if (!config_init($CONFIG_INIT_EXPLICIT_NAME, $config_name)) {    critical('errors processing config file "' .	       Amanda::Config::get_config_filename() . '"');}Amanda::Util::finish_setup($RUNNING_AS_DUMPUSER);## Check the devicemy $device_name;if ( $#ARGV == 1 ) {    $device_name = $ARGV[1];} else {    $device_name = getconf($CNF_TAPEDEV);}print_result( try_read_label($device_name) );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -