2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-06-13 09:50:19 +00:00

[CUSTOMER] Ping not working for non root users on Diskless PowerKVM guests (rhels7.2) #922: use tar as the default archive method instead of cpio (#5187)

This commit is contained in:
yangsong
2018-05-10 16:26:42 +08:00
committed by Bin Xu
parent 56c2a155ea
commit 2bf5dc57f9
3 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ OPTIONS
\ **-v**\ Command Version.
\ **-m| -**\ **-method**\ Archive Method (cpio,tar,squashfs, default is cpio)
\ **-m| -**\ **-method**\ Archive Method (cpio,tar,squashfs, default is tar)
\ **-c| -**\ **-compress**\ Compress Method (pigz,gzip,xz, default is pigz/gzip)

View File

@ -27,7 +27,7 @@ B<-h> Display usage message.
B<-v> Command Version.
B<-m| --method> Archive Method (cpio,tar,squashfs, default is cpio)
B<-m| --method> Archive Method (cpio,tar,squashfs, default is tar)
B<-c| --compress> Compress Method (pigz,gzip,xz, default is pigz/gzip)

View File

@ -89,7 +89,7 @@ sub process_request {
my $osver;
my $arch;
my $profile;
my $method = 'cpio';
my $method = 'tar';
my $compress;
my $exlistloc;
my $syncfile;