@@ -26,19 +26,34 @@ pub(crate) struct Pid1App {
26
26
/// Override environment variables. Can specify multiple times.
27
27
#[ arg( short, long, value_parser=parse_key_val:: <OsString , OsString >) ]
28
28
pub ( crate ) env : Vec < ( OsString , OsString ) > ,
29
- /// Process arguments
29
+ /// Run command with user ID
30
+ #[ arg( short, long, value_name = "USER_ID" ) ]
31
+ user_id : Option < u32 > ,
32
+ /// Run command with group ID
33
+ #[ arg( short, long, value_name = "GROUP_ID" ) ]
34
+ group_id : Option < u32 > ,
35
+ /// Process to run
30
36
#[ arg( required = true ) ]
31
- child_process : Vec < String > ,
37
+ pub ( crate ) command : String ,
38
+ /// Arguments to the process
39
+ #[ arg( required = false ) ]
40
+ pub ( crate ) args : Vec < String > ,
32
41
}
33
42
34
43
impl Pid1App {
35
44
#[ cfg( target_family = "unix" ) ]
36
45
pub ( crate ) fn run ( self ) -> ! {
37
- let mut child = std:: process:: Command :: new ( & self . child_process [ 0 ] ) ;
38
- let child = child. args ( & self . child_process [ 1 ..] ) ;
46
+ let mut child = std:: process:: Command :: new ( & self . command ) ;
47
+ let child = child. args ( & self . args [ ..] ) ;
39
48
if let Some ( workdir) = & self . workdir {
40
49
child. current_dir ( workdir) ;
41
50
}
51
+ if let Some ( user_id) = & self . user_id {
52
+ child. uid ( * user_id) ;
53
+ }
54
+ if let Some ( group_id) = & self . group_id {
55
+ child. gid ( * group_id) ;
56
+ }
42
57
for ( key, value) in & self . env {
43
58
child. env ( key, value) ;
44
59
}
@@ -55,10 +70,7 @@ impl Pid1App {
55
70
let child = match child {
56
71
Ok ( child) => child,
57
72
Err ( err) => {
58
- eprintln ! (
59
- "pid1: {} spawn failed. Got error: {err}" ,
60
- self . child_process[ 0 ]
61
- ) ;
73
+ eprintln ! ( "pid1: {} spawn failed. Got error: {err}" , self . command) ;
62
74
std:: process:: exit ( 1 ) ;
63
75
}
64
76
} ;
0 commit comments