@@ -849,11 +849,10 @@ pub(crate) fn setup_tmp_mounts() -> Result<()> {
849
849
} else {
850
850
// Note we explicitly also don't want a "nosuid" tmp, because that
851
851
// suppresses our install_t transition
852
- Task :: new_and_run (
853
- "Mounting tmpfs /tmp" ,
854
- "mount" ,
855
- [ "tmpfs" , "-t" , "tmpfs" , "/tmp" ] ,
856
- ) ?;
852
+ Task :: new ( "Mounting tmpfs /tmp" , "mount" )
853
+ . args ( [ "tmpfs" , "-t" , "tmpfs" , "/tmp" ] )
854
+ . quiet ( )
855
+ . run ( ) ?;
857
856
}
858
857
859
858
// Point our /var/tmp at the host, via the /proc/1/root magic link
@@ -918,11 +917,10 @@ pub(crate) fn setup_sys_mount(fstype: &str, fspath: &str) -> Result<()> {
918
917
}
919
918
920
919
// This means the host has this mounted, so we should mount it too
921
- Task :: new_and_run (
922
- format ! ( "Mounting {fstype} {fspath}" ) ,
923
- "mount" ,
924
- [ "-t" , fstype, fstype, fspath] ,
925
- )
920
+ Task :: new ( format ! ( "Mounting {fstype} {fspath}" ) , "mount" )
921
+ . args ( [ "-t" , fstype, fstype, fspath] )
922
+ . quiet ( )
923
+ . run ( )
926
924
}
927
925
928
926
/// Verify that we can load the manifest of the target image
@@ -1026,6 +1024,8 @@ async fn prepare_install(
1026
1024
let ( override_disable_selinux, setenforce_guard) =
1027
1025
reexecute_self_for_selinux_if_needed ( & source, config_opts. disable_selinux ) ?;
1028
1026
1027
+ println ! ( "Installing: {:#}" , & target_imgref) ;
1028
+
1029
1029
let install_config = config:: load_config ( ) ?;
1030
1030
tracing:: debug!( "Loaded install configuration" ) ;
1031
1031
0 commit comments