search for: out_dir

Displaying 8 results from an estimated 8 matches for "out_dir".

2017 Feb 21
0
[PATCH 3/3] dib: rename "aux" to "in_target.aux"
.../tmp/aux/perm"; + (* Check /tmp/in_target.aux still exists. *) + ignore (g#is_dir "/tmp/in_target.aux"); + g#mount "/dev/sdb" "/tmp/in_target.aux"; + g#mount drive_partition "/tmp/in_target.aux/perm"; run_hook_in "finalise.d"; - let out_dir = "/tmp/aux/out/" ^ image_basename_d in + let out_dir = "/tmp/in_target.aux/out/" ^ image_basename_d in run_hook_out ~new_wd:out_dir "cleanup.d"; -- 2.9.3
2023 Jan 18
9
remove most callers of write_one_page v3
Hi all, this series removes most users of the write_one_page API. These helpers internally call ->writepage which we are gradually removing from the kernel. Changes since v2: - more minix error handling fixes Changes since v1: - drop the btrfs changes (queue up in the btrfs tree) - drop the finaly move to jfs (can't be done without the btrfs patches) - fix the existing minix code to
2017 Feb 21
3
[PATCH 1/3] dib: unset all temporary dirs envvars in fake-sudo
The real sudo does it as well, and leaving them when preserving the environment (-E) maybe breaks the applications, as e.g. chroot will have a TMPDIR path pointing outside of it. --- dib/dib.ml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dib/dib.ml b/dib/dib.ml index df83ba1..d15cd19 100644 --- a/dib/dib.ml +++ b/dib/dib.ml @@ -301,6 +301,11 @@ if [ -z \"$preserve_env\" ];
2015 Nov 11
2
[PATCH 1/2] dib: Make the interface between cmdline.ml and dib.ml explicit.
...bug ~blockdev ~log_file g extra_packages); + if cmdline.extra_packages <> [] then + ignore (run_install_packages ~debug ~blockdev ~log_file g + cmdline.extra_packages); run_hook_in "install.d"; @@ -832,8 +839,8 @@ let main () = if g#ls out_dir <> [||] then ( message (f_"Extracting data out of the image"); - do_mkdir (image_name ^ ".d"); - g#copy_out out_dir (Filename.dirname image_name); + do_mkdir (cmdline.image_name ^ ".d"); + g#copy_out out_dir (Filename.dirname cmdline.image_name);...
2002 Feb 08
3
SCP Problem with OpenSSH 3.0.2p1 linux->solaris
Hello, i am experiencing scp hangs. This command is executed: system("/usr/bin/scp -v -v -v -C root\@$ip:$LOG_DIR_CLIENT$SYSTEM_LOG"."_transfer $LOG_DIR_SERVER$SYSTEM_LOG-$ip >$SSH_STEP3_LOG 2>&1"); from within a perl script.
2015 May 29
0
[PATCH v3] RFC: New virt-dib tool
..._all (); + flush_all (); + g#mount blockdev "/"; + (* Check /tmp/aux still exists. *) + ignore (g#is_dir "/tmp/aux"); + g#mount "/dev/sdb" "/tmp/aux"; + g#mount drive_partition "/tmp/aux/perm"; + + run_hook_in "finalise.d"; + + let out_dir = "/tmp/aux/out/" ^ image_name_d in + + run_hook_out ~new_wd:out_dir "cleanup.d"; + + g#sync (); + + if g#ls out_dir <> [||] then ( + message (f_"Extracting data out of the image"); + do_mkdir image_name_d; + g#copy_out out_dir "."; + ); +...
2015 Jul 03
1
[PATCH v5] New tool: virt-dib
..._all (); + flush_all (); + g#mount blockdev "/"; + (* Check /tmp/aux still exists. *) + ignore (g#is_dir "/tmp/aux"); + g#mount "/dev/sdb" "/tmp/aux"; + g#mount drive_partition "/tmp/aux/perm"; + + run_hook_in "finalise.d"; + + let out_dir = "/tmp/aux/out/" ^ image_name_d in + + run_hook_out ~new_wd:out_dir "cleanup.d"; + + g#sync (); + + if g#ls out_dir <> [||] then ( + message (f_"Extracting data out of the image"); + do_mkdir image_name_d; + g#copy_out out_dir "."; + ); +...
2015 Jun 16
2
[PATCH v4] RFC: New tool: virt-dib
..._all (); + flush_all (); + g#mount blockdev "/"; + (* Check /tmp/aux still exists. *) + ignore (g#is_dir "/tmp/aux"); + g#mount "/dev/sdb" "/tmp/aux"; + g#mount drive_partition "/tmp/aux/perm"; + + run_hook_in "finalise.d"; + + let out_dir = "/tmp/aux/out/" ^ image_name_d in + + run_hook_out ~new_wd:out_dir "cleanup.d"; + + g#sync (); + + if g#ls out_dir <> [||] then ( + message (f_"Extracting data out of the image"); + do_mkdir image_name_d; + g#copy_out out_dir "."; + ); +...