# $Id: 98_unmark.pm 13246 2017-01-26 19:24:51Z betateilchen $ package main; use strict; use warnings; sub unmark_Initialize($$) { $cmds{unmark} = { Fn => "CommandUnmark", Hlp =>",unmark devices"}; } sub CommandUnmark($$) { my ($cl, $param) = @_; my ($devspec,@marks) = split (" ",$param); my @devices = devspec2array($devspec,undef); my $ret = ""; foreach my $m (@marks) { $m = uc($m); next if( $m ne "TEMPORARY" && $m ne "VOLATILE" ); foreach my $d (@devices){ delete $defs{$d}{$m}; $ret .= "$d unmarked as $m\n"; } } return $ret; } 1; =pod =item command =item summary mark devices for TEMPORARY or VOLATILE =item summary_DE markiert Geräte als TEMPORARY oder VOLATILE =item command =begin html

unmark

=end html =cut