Compare commits
No commits in common. "f12f786f460b58633cf77652adadacd31b4fbd80" and "78a6a89988f08b71c86e217ff6861391eb4fddb0" have entirely different histories.
f12f786f46
...
78a6a89988
2 changed files with 7 additions and 42 deletions
|
@ -1,8 +1,8 @@
|
||||||
|
|
||||||
|
//mod misc;
|
||||||
mod parser;
|
mod parser;
|
||||||
|
|
||||||
use std::env;
|
use std::env;
|
||||||
use std::process::exit;
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ fn main() {
|
||||||
Err(..) => "/run/runit/service".to_string(),
|
Err(..) => "/run/runit/service".to_string(),
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut svwait_var = match svwait_env {
|
let svwait_var = match svwait_env {
|
||||||
Ok(env) => match env.parse::<i32>() {
|
Ok(env) => match env.parse::<i32>() {
|
||||||
Ok(var) => var,
|
Ok(var) => var,
|
||||||
Err(..) => 7,
|
Err(..) => 7,
|
||||||
|
@ -23,8 +23,6 @@ fn main() {
|
||||||
Err(..) => 7,
|
Err(..) => 7,
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut verbose = 0;
|
|
||||||
|
|
||||||
dbg!(svdir_var);
|
dbg!(svdir_var);
|
||||||
dbg!(svwait_var);
|
dbg!(svwait_var);
|
||||||
|
|
||||||
|
@ -34,43 +32,12 @@ fn main() {
|
||||||
|
|
||||||
let arg_parser: Vec<String> = parser::parse_args(args);
|
let arg_parser: Vec<String> = parser::parse_args(args);
|
||||||
|
|
||||||
//dbg!(arg_parser);
|
dbg!(arg_parser);
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: Interpret the flags given if some are given.
|
||||||
let mut i = 0;
|
|
||||||
|
|
||||||
for val in arg_parser.iter() {
|
|
||||||
if i == 0 {
|
|
||||||
if val == "-v" {
|
|
||||||
verbose = 1;
|
|
||||||
dbg!(verbose);
|
|
||||||
}
|
|
||||||
else if val == "-w" {
|
|
||||||
i = 3;
|
|
||||||
// take next parametter before returning to i = 0.
|
|
||||||
}
|
|
||||||
else if val == "--" {
|
|
||||||
i += 1;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
parser::misc::usage();
|
|
||||||
exit(100);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// TODO: Set the command if it is given
|
// TODO: Set the command if it is given
|
||||||
// TODO: Exec the command on all given services.
|
// TODO: Exec the command on all given services.
|
||||||
else if i == 3 {
|
|
||||||
svwait_var = match val.parse::<i32>() {
|
|
||||||
Ok(val) => val,
|
|
||||||
Err(..) => svwait_var,
|
|
||||||
};
|
|
||||||
dbg!(svwait_var);
|
|
||||||
i = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
|
|
||||||
pub mod misc;
|
mod misc;
|
||||||
|
|
||||||
use std::process::exit;
|
use std::process::exit;
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@ pub fn parse_args(args: Vec<String>) -> Vec<String>{
|
||||||
tmpstr = parse_args_1(arg);
|
tmpstr = parse_args_1(arg);
|
||||||
|
|
||||||
if tmpstr == "--" {
|
if tmpstr == "--" {
|
||||||
parser.push("--".to_string());
|
|
||||||
i += 1;
|
i += 1;
|
||||||
}
|
}
|
||||||
if tmpstr == "-w" {
|
if tmpstr == "-w" {
|
||||||
|
@ -31,7 +30,6 @@ pub fn parse_args(args: Vec<String>) -> Vec<String>{
|
||||||
}
|
}
|
||||||
else if tmpstr == "" {
|
else if tmpstr == "" {
|
||||||
// We are actually in phase II. Do exactly the same if it was phase II.
|
// We are actually in phase II. Do exactly the same if it was phase II.
|
||||||
parser.push("--".to_string());
|
|
||||||
parser.push(phase2(arg));
|
parser.push(phase2(arg));
|
||||||
i = 3;
|
i = 3;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue