/usr/share/perl5/Rex/Commands/File.pm is in rex 1.4.1-1.
This file is owned by root:root, with mode 0o644.
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 | #
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
=head1 NAME
Rex::Commands::File - Transparent File Manipulation
=head1 DESCRIPTION
With this module you can manipulate files.
=head1 SYNOPSIS
task "read_passwd", "server01", sub {
my $fh = file_read "/etc/passwd";
for my $line ($fh->read_all) {
print $line;
}
$fh->close;
};
task "read_passwd2", "server01", sub {
say cat "/etc/passwd";
};
task "write_passwd", "server01", sub {
my $fh = file_write "/etc/passwd";
$fh->write("root:*:0:0:root user:/root:/bin/sh\n");
$fh->close;
};
delete_lines_matching "/var/log/auth.log", matching => "root";
delete_lines_matching "/var/log/auth.log", matching => qr{Failed};
delete_lines_matching "/var/log/auth.log",
matching => "root", qr{Failed}, "nobody";
file "/path/on/the/remote/machine",
source => "/path/on/local/machine";
file "/path/on/the/remote/machine",
content => "foo bar";
file "/path/on/the/remote/machine",
source => "/path/on/local/machine",
owner => "root",
group => "root",
mode => 400,
on_change => sub { say "File was changed."; };
=head1 EXPORTED FUNCTIONS
=cut
package Rex::Commands::File;
use strict;
use warnings;
use Fcntl;
our $VERSION = '1.4.1'; # VERSION
require Rex::Exporter;
use Data::Dumper;
use Rex::Config;
use Rex::FS::File;
use Rex::Commands::Upload;
use Rex::Commands::MD5;
use Rex::Commands::Run;
use Rex::File::Parser::Data;
use Rex::Helper::System;
use Rex::Helper::Path;
use Rex::Helper::Run;
use Rex::Hook;
use Carp;
use Rex::Interface::Exec;
use Rex::Interface::File;
use Rex::Interface::Fs;
require Rex::CMDB;
use File::Basename qw(dirname basename);
use vars qw(@EXPORT);
use base qw(Rex::Exporter);
@EXPORT = qw(file_write file_read file_append
cat sed
delete_lines_matching append_if_no_such_line delete_lines_according_to
file template append_or_amend_line
extract);
use vars qw(%file_handles);
=head2 template($file, @params)
Parse a template and return the content.
my $content = template("/files/templates/vhosts.tpl",
name => "test.lan",
webmaster => 'webmaster@test.lan');
The file name specified is subject to "path_map" processing as documented
under the file() function to resolve to a physical file name.
In addition to the "path_map" processing, if the B<-E> command line switch
is used to specify an environment name, existence of a file ending with
'.<env>' is checked and has precedence over the file without one, if it
exists. E.g. if rex is started as:
$ rex -E prod task1
then in task1 defined as:
task "task1", sub {
say template("files/etc/ntpd.conf");
};
will print the content of 'files/etc/ntpd.conf.prod' if it exists.
Note: the appended environment mechanism is always applied, after
the 'path_map' mechanism, if that is configured.
=cut
sub template {
my ( $file, @params ) = @_;
my $param;
if ( ref $params[0] eq "HASH" ) {
$param = $params[0];
}
else {
$param = {@params};
}
if ( !exists $param->{server} ) {
$param->{server} = Rex::Commands::connection()->server;
}
my $content;
if ( ref $file && ref $file eq 'SCALAR' ) {
$content = ${$file};
}
else {
$file = resolv_path($file);
unless ( $file =~ m/^\// || $file =~ m/^\@/ ) {
# path is relative and no template
Rex::Logger::debug("Relativ path $file");
$file = Rex::Helper::Path::get_file_path( $file, caller() );
Rex::Logger::debug("New filename: $file");
}
# if there is a file called filename.environment then use this file
# ex:
# $content = template("files/hosts.tpl");
#
# rex -E live ...
# will first look if files/hosts.tpl.live is available, if not it will
# use files/hosts.tpl
if ( -f "$file." . Rex::Config->get_environment ) {
$file = "$file." . Rex::Config->get_environment;
}
if ( -f $file ) {
$content = eval { local ( @ARGV, $/ ) = ($file); <>; };
}
elsif ( $file =~ m/^\@/ ) {
my @caller = caller(0);
my $file_path = Rex::get_module_path( $caller[0] );
if ( !-f $file_path ) {
my ($mod_name) = ( $caller[0] =~ m/^.*::(.*?)$/ );
if ( $mod_name && -f "$file_path/$mod_name.pm" ) {
$file_path = "$file_path/$mod_name.pm";
}
elsif ( -f "$file_path/__module__.pm" ) {
$file_path = "$file_path/__module__.pm";
}
elsif ( -f "$file_path/Module.pm" ) {
$file_path = "$file_path/Module.pm";
}
elsif ( -f $caller[1] ) {
$file_path = $caller[1];
}
elsif ( $caller[1] =~ m|^/loader/[^/]+/__Rexfile__.pm$| ) {
$file_path = $INC{"__Rexfile__.pm"};
}
}
my $file_content = eval { local ( @ARGV, $/ ) = ($file_path); <>; };
my ($data) = ( $file_content =~ m/.*__DATA__(.*)/ms );
my $fp = Rex::File::Parser::Data->new( data => [ split( /\n/, $data ) ] );
my $snippet_to_read = substr( $file, 1 );
$content = $fp->read($snippet_to_read);
}
else {
die("$file not found");
}
}
my %template_vars;
if ( !exists $param->{__no_sys_info__} ) {
%template_vars = _get_std_template_vars($param);
}
else {
delete $param->{__no_sys_info__};
%template_vars = %{$param};
}
# configuration variables
my $config_values = Rex::Config->get_all;
for my $key ( keys %{$config_values} ) {
if ( !exists $template_vars{$key} ) {
$template_vars{$key} = $config_values->{$key};
}
}
if ( Rex::CMDB::cmdb_active() && Rex::Config->get_register_cmdb_template ) {
my $data = Rex::CMDB::cmdb();
for my $key ( keys %{ $data->{value} } ) {
if ( !exists $template_vars{$key} ) {
$template_vars{$key} = $data->{value}->{$key};
}
}
}
return Rex::Config->get_template_function()->( $content, \%template_vars );
}
sub _get_std_template_vars {
my ($param) = @_;
my %merge1 = %{ $param || {} };
my %merge2;
if ( Rex::get_cache()->valid("system_information_info") ) {
%merge2 = %{ Rex::get_cache()->get("system_information_info") };
}
else {
%merge2 = Rex::Helper::System::info();
Rex::get_cache()->set( "system_information_info", \%merge2 );
}
my %template_vars = ( %merge1, %merge2 );
return %template_vars;
}
=head2 file($file_name, %options)
This function is the successor of I<install file>. Please use this function to upload files to your server.
task "prepare", "server1", "server2", sub {
file "/file/on/remote/machine",
source => "/file/on/local/machine";
file "/etc/hosts",
content => template("templates/etc/hosts.tpl"),
owner => "user",
group => "group",
mode => 700,
on_change => sub { say "Something was changed." };
file "/etc/motd",
content => `fortune`;
file "/etc/named.conf",
content => template("templates/etc/named.conf.tpl"),
no_overwrite => TRUE; # this file will not be overwritten if already exists.
file "/etc/httpd/conf/httpd.conf",
source => "/files/etc/httpd/conf/httpd.conf",
on_change => sub { service httpd => "restart"; };
file "/etc/named.d",
ensure => "directory", # this will create a directory
owner => "root",
group => "root";
file "/etc/motd",
ensure => "absent"; # this will remove the file or directory
};
The first parameter is either a string or an array reference. In the latter case the
function is called for all strings in the array. Therefore, the following constructs
are equivalent:
file '/tmp/test1', ensure => 'directory';
file '/tmp/test2', ensure => 'directory';
file [ qw( /tmp/test1 /tmp/test2 ) ], ensure => 'directory'; # use array ref
file [ glob('/tmp/test{1,2}') ], ensure => 'directory'; # explicit glob call for array contents
Use the glob carefully as B<it can leak local filesystem information> (e.g. when using wildcards).
The I<source> is subject to a path resolution algorithm. This algorithm
can be configured using the I<set> function to set the value of the
I<path_map> variable to a hash containing path prefixes as its keys.
The associated values are arrays listing the prefix replacements in order
of (decreasing) priority.
set "path_map", {
"files/" => [ "files/{environment}/{hostname}/_root_/",
"files/{environment}/_root_/" ]
};
With this configuration, the file "files/etc/ntpd.conf" will be probed for
in the following locations:
- files/{environment}/{hostname}/_root_/etc/ntpd.conf
- files/{environment}/_root_/etc/ntpd.conf
- files/etc/ntpd.conf
Furthermore, if a path prefix matches multiple prefix entries in 'path_map',
e.g. "files/etc/ntpd.conf" matching both "files/" and "files/etc/", the
longer matching prefix(es) have precedence over shorter ones. Note that
keys without a trailing slash (i.e. "files/etc") will be treated as having
a trailing slash when matching the prefix ("files/etc/").
If no file is found using the above procedure and I<source> is relative,
it will search from the location of your I<Rexfile> or the I<.pm> file if
you use Perl packages.
All the possible variables ('{environment}', '{hostname}', ...) are documented
in the CMDB YAML documentation.
This function supports the following hooks:
=over 8
=item before
This gets executed before everything is done. The return value of this hook overwrite the original parameters of the function-call.
=item before_change
This gets executed right before the new file is written. Only with I<content> parameter. For the I<source> parameter the hook of the upload function is used.
=item after_change
This gets executed right after the file was written. Only with I<content> parameter. For the I<source> parameter the hook of the upload function is used.
=item after
This gets executed right before the file() function returns.
=back
=cut
sub file {
my ( $file, @options ) = @_;
if ( ref $file eq "ARRAY" ) {
my @ret;
# $file is an array, so iterate over these files
for my $f ( @{$file} ) {
push( @ret, file( $f, @options ) );
}
return \@ret;
}
my $option = {@options};
$file = resolv_path($file);
my ($is_directory);
if ( exists $option->{ensure} && $option->{ensure} eq "directory" ) {
$is_directory = 1;
}
if ( exists $option->{source} && !$is_directory ) {
$option->{source} = resolv_path( $option->{source} );
}
#### check and run before hook
eval {
my @new_args = Rex::Hook::run_hook( file => "before", @_ );
if (@new_args) {
( $file, @options ) = @new_args;
$option = {@options};
}
1;
} or do {
die("Before hook failed. Cancelling file() action: $@");
};
##############################
# default: ensure = present
$option->{ensure} ||= "present";
Rex::get_current_connection()->{reporter}
->report_resource_start( type => "file", name => $file );
my $need_md5 = ( $option->{"on_change"} && !$is_directory ? 1 : 0 );
my $on_change = $option->{"on_change"} || sub { };
my $fs = Rex::Interface::Fs->create;
my $__ret = { changed => 0 };
my ( $new_md5, $old_md5 );
eval { $old_md5 = md5($file); };
if ( exists $option->{no_overwrite} && $option->{no_overwrite} && $old_md5 ) {
Rex::Logger::debug(
"File already exists and no_overwrite option given. Doing nothing.");
$__ret = { changed => 0 };
Rex::get_current_connection()->{reporter}->report(
changed => 0,
message =>
"File already exists and no_overwrite option given. Doing nothing."
);
}
elsif ( exists $option->{"content"} && !$is_directory ) {
# first upload file to tmp location, to get md5 sum.
# than we can decide if we need to replace the current (old) file.
my @splitted_file = split( /[\/\\]/, $file );
my $file_name = ".rex.tmp." . pop(@splitted_file);
my $tmp_file_name = (
$#splitted_file != -1
? ( join( "/", @splitted_file ) . "/" . $file_name )
: $file_name
);
my $fh = file_write($tmp_file_name);
my @lines = split( qr{$/}, $option->{"content"} );
for my $line (@lines) {
$fh->write( $line . $/ );
}
$fh->close;
# now get md5 sums
$new_md5 = md5($tmp_file_name);
if ( $new_md5 && $old_md5 && $new_md5 eq $old_md5 ) {
Rex::Logger::debug(
"No need to overwrite existing file. Old and new files are the same. $old_md5 eq $new_md5."
);
# md5 sums are the same, delete tmp.
$fs->unlink($tmp_file_name);
$need_md5 = 0; # we don't need to execute on_change hook
Rex::get_current_connection()->{reporter}->report(
changed => 0,
message =>
"No need to overwrite existing file. Old and new files are the same. $old_md5 eq $new_md5."
);
}
else {
$old_md5 ||= "";
Rex::Logger::debug(
"Need to use the new file. md5 sums are different. <<$old_md5>> = <<$new_md5>>"
);
#### check and run before_change hook
Rex::Hook::run_hook( file => "before_change", @_ );
##############################
if (Rex::is_sudo) {
my $current_options =
Rex::get_current_connection_object()->get_current_sudo_options;
Rex::get_current_connection_object()->push_sudo_options( {} );
if ( exists $current_options->{user} ) {
$fs->chown( "$current_options->{user}:", $tmp_file_name );
}
}
$fs->rename( $tmp_file_name, $file );
Rex::get_current_connection_object()->pop_sudo_options()
if (Rex::is_sudo);
$__ret = { changed => 1 };
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "File updated. old md5: $old_md5, new md5: $new_md5"
);
#### check and run after_change hook
Rex::Hook::run_hook( file => "after_change", @_, $__ret );
##############################
}
}
elsif ( exists $option->{"source"} && !$is_directory ) {
$option->{source} =
Rex::Helper::Path::get_file_path( $option->{source}, caller() );
# HOOKS: for this case you have to use the upload hooks!
$__ret = upload $option->{"source"}, "$file", force => 1;
}
if ( exists $option->{"ensure"} ) {
if ( $option->{ensure} eq "present" ) {
if ( !$fs->is_file($file) ) {
#### check and run before_change hook
Rex::Hook::run_hook( file => "before_change", @_ );
##############################
my $fh = file_write($file);
$fh->write("");
$fh->close;
$__ret = { changed => 1 };
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "file is now present, with no content",
);
#### check and run after_change hook
Rex::Hook::run_hook( file => "after_change", @_, $__ret );
##############################
}
elsif ( !$__ret->{changed} ) {
$__ret = { changed => 0 };
Rex::get_current_connection()->{reporter}->report( changed => 0, );
}
}
elsif ( $option->{ensure} eq "absent" ) {
$need_md5 = 0;
delete $option->{mode};
delete $option->{group};
delete $option->{owner};
#### check and run before_change hook
Rex::Hook::run_hook( file => "before_change", @_ );
##############################
if ( $fs->is_file($file) ) {
$fs->unlink($file);
$__ret = { changed => 1 };
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "File removed."
);
}
elsif ( $fs->is_dir($file) ) {
$fs->rmdir($file);
$__ret = { changed => 1 };
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Directory removed.",
);
}
else {
$__ret = { changed => 0 };
Rex::get_current_connection()->{reporter}->report( changed => 0, );
}
#### check and run after_change hook
Rex::Hook::run_hook( file => "after_change", @_, $__ret );
##############################
}
elsif ( $option->{ensure} eq "directory" ) {
Rex::Logger::debug("file() should be a directory");
my %dir_option;
if ( exists $option->{owner} ) {
$dir_option{owner} = $option->{owner};
}
if ( exists $option->{group} ) {
$dir_option{group} = $option->{group};
}
if ( exists $option->{mode} ) {
$dir_option{mode} = $option->{mode};
}
Rex::Commands::Fs::mkdir( $file, %dir_option );
}
}
if ( !exists $option->{content}
&& !exists $option->{source}
&& $option->{ensure} ne "absent" )
{
# no content and no source, so just verify that the file is present
if ( !$fs->is_file($file) && !$is_directory ) {
#### check and run before_change hook
Rex::Hook::run_hook( file => "before_change", @_ );
##############################
my $fh = file_write($file);
$fh->write("");
$fh->close;
my $f_type = "file is now present, with no content";
if ( exists $option->{ensure} && $option->{ensure} eq "directory" ) {
$f_type = "directory is now present";
}
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => $f_type,
);
#### check and run after_change hook
Rex::Hook::run_hook( file => "after_change", @_, $__ret );
##############################
}
}
if ( $option->{ensure} ne "absent" ) {
if ($need_md5) {
eval { $new_md5 = md5($file); };
}
my %stat_old = $fs->stat($file);
if ( exists $option->{"mode"} ) {
$fs->chmod( $option->{"mode"}, $file );
}
if ( exists $option->{"group"} ) {
$fs->chgrp( $option->{"group"}, $file );
}
if ( exists $option->{"owner"} ) {
$fs->chown( $option->{"owner"}, $file );
}
my %stat_new = $fs->stat($file);
if ( %stat_old && %stat_new && $stat_old{mode} ne $stat_new{mode} ) {
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message =>
"File-System permissions changed from $stat_old{mode} to $stat_new{mode}.",
);
}
if ( %stat_old && %stat_new && $stat_old{uid} ne $stat_new{uid} ) {
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Owner changed from $stat_old{uid} to $stat_new{uid}.",
);
}
if ( %stat_old && %stat_new && $stat_old{gid} ne $stat_new{gid} ) {
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Group changed from $stat_old{gid} to $stat_new{gid}.",
);
}
}
my $on_change_done = 0;
if ($need_md5) {
unless ( $old_md5 && $new_md5 && $old_md5 eq $new_md5 ) {
$old_md5 ||= "";
$new_md5 ||= "";
Rex::Logger::debug("File $file has been changed... Running on_change");
Rex::Logger::debug("old: $old_md5");
Rex::Logger::debug("new: $new_md5");
&$on_change($file);
$on_change_done = 1;
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Content changed.",
);
$__ret = { changed => 1 };
}
}
if ( $__ret->{changed} == 1 && $on_change_done == 0 ) {
&$on_change($file);
}
#### check and run after hook
Rex::Hook::run_hook( file => "after", @_, $__ret );
##############################
Rex::get_current_connection()->{reporter}
->report_resource_end( type => "file", name => $file );
return $__ret->{changed};
}
=head2 file_write($file_name)
This function opens a file for writing (it will truncate the file if it already exists). It returns a Rex::FS::File object on success.
On failure it will die.
my $fh;
eval {
$fh = file_write("/etc/groups");
};
# catch an error
if($@) {
print "An error occurred. $@.\n";
}
# work with the filehandle
$fh->write("...");
$fh->close;
=cut
sub file_write {
my ($file) = @_;
$file = resolv_path($file);
Rex::Logger::debug("Opening file: $file for writing.");
my $fh = Rex::Interface::File->create;
if ( !$fh->open( ">", $file ) ) {
Rex::Logger::debug("Can't open $file for writing.");
die("Can't open $file for writing.");
}
return Rex::FS::File->new( fh => $fh );
}
=head2 file_append($file_name)
=cut
sub file_append {
my ($file) = @_;
$file = resolv_path($file);
Rex::Logger::debug("Opening file: $file for appending.");
my $fh = Rex::Interface::File->create;
if ( !$fh->open( ">>", $file ) ) {
Rex::Logger::debug("Can't open $file for appending.");
die("Can't open $file for appending.");
}
return Rex::FS::File->new( fh => $fh );
}
=head2 file_read($file_name)
This function opens a file for reading. It returns a Rex::FS::File object on success.
On failure it will die.
my $fh;
eval {
$fh = read("/etc/groups");
};
# catch an error
if($@) {
print "An error occurred. $@.\n";
}
# work with the filehandle
my $content = $fh->read_all;
$fh->close;
=cut
sub file_read {
my ($file) = @_;
$file = resolv_path($file);
Rex::Logger::debug("Opening file: $file for reading.");
my $fh = Rex::Interface::File->create;
if ( !$fh->open( "<", $file ) ) {
Rex::Logger::debug("Can't open $file for reading.");
die("Can't open $file for reading.");
}
return Rex::FS::File->new( fh => $fh );
}
=head2 cat($file_name)
This function returns the complete content of $file_name as a string.
print cat "/etc/passwd";
=cut
sub cat {
my ($file) = @_;
$file = resolv_path($file);
my $fh = file_read($file);
unless ($fh) {
die("Can't open $file for reading");
}
my $content = $fh->read_all;
$fh->close;
return $content;
}
=head2 delete_lines_matching($file, $regexp)
Delete lines that match $regexp in $file.
task "clean-logs", sub {
delete_lines_matching "/var/log/auth.log" => "root";
};
=cut
sub delete_lines_matching {
my ( $file, @m ) = @_;
$file = resolv_path($file);
Rex::get_current_connection()->{reporter}
->report_resource_start( type => "delete_lines_matching", name => $file );
for (@m) {
if ( ref($_) ne "Regexp" ) {
$_ = qr{\Q$_\E};
}
}
my $fs = Rex::Interface::Fs->create;
if ( !$fs->is_file($file) ) {
Rex::Logger::info("File: $file not found.");
die("$file not found");
}
if ( !$fs->is_writable($file) ) {
Rex::Logger::info("File: $file not writable.");
die("$file not writable");
}
my $nl = $/;
my @content = split( /$nl/, cat($file) );
my $old_md5 = "";
eval { $old_md5 = md5($file); };
my $fh = file_write $file;
unless ($fh) {
die("Can't open $file for writing");
}
OUT:
for my $line (@content) {
IN:
for my $match (@m) {
if ( $line =~ $match ) {
next OUT;
}
}
$fh->write( $line . $nl );
}
$fh->close;
my $new_md5 = "";
eval { $new_md5 = md5($file); };
if ( $new_md5 ne $old_md5 ) {
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Content changed.",
);
}
else {
Rex::get_current_connection()->{reporter}->report( changed => 0, );
}
Rex::get_current_connection()->{reporter}
->report_resource_end( type => "delete_lines_matching", name => $file );
}
=head2 delete_lines_according_to($search, $file, @options)
This is the successor of the delete_lines_matching() function. This function also allows the usage of an on_change hook.
It will search for $search in $file and remove the found lines. If on_change hook is present it will execute this if the file was changed.
task "cleanup", "server1", sub {
delete_lines_according_to qr{^foo:}, "/etc/passwd",
on_change => sub {
say "removed user foo.";
};
};
=cut
sub delete_lines_according_to {
my ( $search, $file, @options ) = @_;
$file = resolv_path($file);
my $option = {@options};
my $on_change = $option->{on_change} || undef;
my ( $old_md5, $new_md5 );
if ($on_change) {
$old_md5 = md5($file);
}
delete_lines_matching( $file, $search );
if ($on_change) {
$new_md5 = md5($file);
if ( $old_md5 ne $new_md5 ) {
&$on_change($file);
}
}
}
=head2 append_if_no_such_line($file, $new_line, @regexp)
Append $new_line to $file if none in @regexp is found. If no regexp is
supplied, the line is appended unless there is already an identical line
in $file.
task "add-group", sub {
append_if_no_such_line "/etc/groups", "mygroup:*:100:myuser1,myuser2", on_change => sub { service sshd => "restart"; };
};
Since 0.42 you can use named parameters as well
task "add-group", sub {
append_if_no_such_line "/etc/groups",
line => "mygroup:*:100:myuser1,myuser2",
regexp => qr{^mygroup},
on_change => sub {
say "file was changed, do something.";
};
append_if_no_such_line "/etc/groups",
line => "mygroup:*:100:myuser1,myuser2",
regexp => [qr{^mygroup:}, qr{^ourgroup:}]; # this is an OR
};
=cut
sub append_if_no_such_line {
_append_or_update( 'append_if_no_such_line', @_ );
}
=head2 append_or_amend_line($file, $line, @regexp)
Similar to L<append_if_no_such_line>, but if the line in the regexp is
found, it will be updated. Otherwise, it will be appended.
task "update-group", sub {
append_or_amend_line "/etc/groups",
line => "mygroup:*:100:myuser3,myuser4",
regexp => qr{^mygroup},
on_change => sub {
say "file was changed, do something.";
};
};
=cut
sub append_or_amend_line {
_append_or_update( 'append_or_amend_line', @_ );
}
sub _append_or_update {
my $action = shift;
my $file = shift;
$file = resolv_path($file);
my ( $new_line, @m );
# check if parameters are in key => value format
my ( $option, $on_change );
Rex::get_current_connection()->{reporter}
->report_resource_start( type => $action, name => $file );
eval {
no warnings;
$option = {@_};
# if there is no line parameter, it is the old parameter format
# so go dieing
if ( !exists $option->{line} ) {
die;
}
$new_line = $option->{line};
if ( exists $option->{regexp} && ref $option->{regexp} eq "Regexp" ) {
@m = ( $option->{regexp} );
}
elsif ( ref $option->{regexp} eq "ARRAY" ) {
@m = @{ $option->{regexp} };
}
$on_change = $option->{on_change} || undef;
1;
} or do {
( $new_line, @m ) = @_;
# check if something in @m (the regexpes) is named on_change
for ( my $i = 0 ; $i < $#m ; $i++ ) {
if ( $m[$i] eq "on_change" && ref( $m[ $i + 1 ] ) eq "CODE" ) {
$on_change = $m[ $i + 1 ];
splice( @m, $i, 2 );
last;
}
}
};
my $fs = Rex::Interface::Fs->create;
my ( $old_md5, $ret );
$old_md5 = md5($file);
# slow but secure way
my $content;
eval {
$content = [ split( /\n/, cat($file) ) ];
1;
} or do {
$ret = 1;
};
if ( !@m ) {
push @m, qr{\Q$new_line\E};
}
my $found;
for my $line ( 0 .. $#{$content} ) {
for my $match (@m) {
if ( ref($match) ne "Regexp" ) {
$match = qr{$match};
}
if ( $content->[$line] =~ $match ) {
return 0 if $action eq 'append_if_no_such_line';
$content->[$line] = "$new_line";
$found = 1;
}
}
}
push @$content, "$new_line" unless $found;
eval {
my $fh = file_write $file;
unless ($fh) {
die("can't open file for writing");
}
$fh->write( join( "\n", @$content ) );
$fh->write("\n");
$fh->close;
$ret = 0;
1;
} or do {
$ret = 3;
};
if ( $ret == 1 ) {
die("Can't open $file for reading");
}
elsif ( $ret == 2 ) {
die("Can't open temp file for writing");
}
elsif ( $ret == 3 ) {
die("Can't open $file for writing");
}
my $new_md5 = md5($file);
if ($on_change) {
if ( $old_md5 && $new_md5 && $old_md5 ne $new_md5 ) {
$old_md5 ||= "";
$new_md5 ||= "";
Rex::Logger::debug("File $file has been changed... Running on_change");
Rex::Logger::debug("old: $old_md5");
Rex::Logger::debug("new: $new_md5");
&$on_change($file);
}
}
if ( $old_md5 && $new_md5 && $old_md5 ne $new_md5 ) {
Rex::get_current_connection()->{reporter}->report(
changed => 1,
message => "Content changed.",
);
}
else {
Rex::get_current_connection()->{reporter}->report( changed => 0, );
}
Rex::get_current_connection()->{reporter}
->report_resource_end( type => $action, name => $file );
}
=head2 extract($file [, %options])
This function extracts a file. The target directory optionally specified with the `to` option will be created automatically.
Supported formats are .box, .tar, .tar.gz, .tgz, .tar.Z, .tar.bz2, .tbz2, .zip, .gz, .bz2, .war, .jar.
task prepare => sub {
extract "/tmp/myfile.tar.gz",
owner => "root",
group => "root",
to => "/etc";
extract "/tmp/foo.tgz",
type => "tgz",
mode => "g+rwX";
};
Can use the type=> option if the file suffix has been changed. (types are tar, tgz, tbz, zip, gz, bz2)
=cut
sub extract {
my ( $file, %option ) = @_;
$file = resolv_path($file);
my $pre_cmd = "";
my $to = ".";
my $type = "";
if ( $option{chdir} ) {
$to = $option{chdir};
}
if ( $option{to} ) {
$to = $option{to};
}
$to = resolv_path($to);
if ( $option{type} ) {
$type = $option{type};
}
Rex::Commands::Fs::mkdir($to);
$pre_cmd = "cd $to; ";
my $exec = Rex::Interface::Exec->create;
my $cmd = "";
if ( $type eq 'tgz'
|| $file =~ m/\.tar\.gz$/
|| $file =~ m/\.tgz$/
|| $file =~ m/\.tar\.Z$/ )
{
$cmd = "${pre_cmd}gunzip -c $file | tar -xf -";
}
elsif ( $type eq 'tbz' || $file =~ m/\.tar\.bz2/ || $file =~ m/\.tbz2/ ) {
$cmd = "${pre_cmd}bunzip2 -c $file | tar -xf -";
}
elsif ( $type eq 'tar' || $file =~ m/\.(tar|box)/ ) {
$cmd = "${pre_cmd}tar -xf $file";
}
elsif ( $type eq 'zip' || $file =~ m/\.(zip|war|jar)$/ ) {
$cmd = "${pre_cmd}unzip -o $file";
}
elsif ( $type eq 'gz' || $file =~ m/\.gz$/ ) {
$cmd = "${pre_cmd}gunzip -f $file";
}
elsif ( $type eq 'bz2' || $file =~ m/\.bz2$/ ) {
$cmd = "${pre_cmd}bunzip2 -f $file";
}
else {
Rex::Logger::info("File not supported.");
die("File ($file) not supported.");
}
$exec->exec($cmd);
my $fs = Rex::Interface::Fs->create;
if ( $option{owner} ) {
$fs->chown( $option{owner}, $to, recursive => 1 );
}
if ( $option{group} ) {
$fs->chgrp( $option{group}, $to, recursive => 1 );
}
if ( $option{mode} ) {
$fs->chmod( $option{mode}, $to, recursive => 1 );
}
}
=head2 sed($search, $replace, $file)
Search some string in a file and replace it.
task sar => sub {
# this will work line by line
sed qr{search}, "replace", "/var/log/auth.log";
# to use it in a multiline way
sed qr{search}, "replace", "/var/log/auth.log",
multiline => TRUE;
};
=cut
sub sed {
my ( $search, $replace, $file, @option ) = @_;
$file = resolv_path($file);
my $options = {};
Rex::get_current_connection()->{reporter}
->report_resource_start( type => "sed", name => $file );
if ( ref( $option[0] ) ) {
$options = $option[0];
}
else {
$options = {@option};
}
my $on_change = $options->{"on_change"} || undef;
my @content;
if ( exists $options->{multiline} ) {
$content[0] = cat($file);
$content[0] =~ s/$search/$replace/gms;
}
else {
@content = split( /\n/, cat($file) );
for (@content) {
s/$search/$replace/;
}
}
my $fs = Rex::Interface::Fs->create;
my %stat = $fs->stat($file);
my $ret = file(
$file,
content => join( "\n", @content ),
on_change => $on_change,
owner => $stat{uid},
group => $stat{gid},
mode => $stat{mode}
);
Rex::get_current_connection()->{reporter}
->report_resource_end( type => "sed", name => $file );
return $ret;
}
1;
|