search for: ff69388

Displaying 1 result from an estimated 1 matches for "ff69388".

Did you mean: 369388
2016 Feb 25
1
[PATCH] fish: Set program name correctly for virt-{copy, tar}-{in, out} programs.
...2..4bdccfb 100755 --- a/fish/virt-copy-in +++ b/fish/virt-copy-in @@ -24,4 +24,4 @@ for arg in $@; do esac done -exec guestfish --rw -i copy-in "$@" +exec -a "$0" guestfish --rw -i copy-in "$@" diff --git a/fish/virt-copy-out b/fish/virt-copy-out index 2648a4d..ff69388 100755 --- a/fish/virt-copy-out +++ b/fish/virt-copy-out @@ -24,4 +24,4 @@ for arg in $@; do esac done -exec guestfish --ro -i copy-out "$@" +exec -a "$0" guestfish --ro -i copy-out "$@" diff --git a/fish/virt-tar-in b/fish/virt-tar-in index dca1bbe..066f27d 10...