You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
Rust
58 lines
1.5 KiB
Rust
use crate::internal::exec::*;
|
|
use crate::internal::*;
|
|
|
|
pub fn new_user(username: &str, hasroot: bool, password: &str) {
|
|
exec_eval(
|
|
exec_chroot(
|
|
"useradd",
|
|
vec![
|
|
String::from("-m"),
|
|
String::from("-s"),
|
|
String::from("/bin/bash"),
|
|
String::from("-p"),
|
|
String::from(password),
|
|
String::from(username),
|
|
],
|
|
),
|
|
format!("Create user {}", username).as_str(),
|
|
);
|
|
if hasroot {
|
|
exec_eval(
|
|
exec_chroot(
|
|
"usermod",
|
|
vec![
|
|
String::from("-a"),
|
|
String::from("-G"),
|
|
String::from("wheel"),
|
|
String::from("nix-users"),
|
|
String::from(username),
|
|
],
|
|
),
|
|
format!("Add user {} to wheel group", username).as_str(),
|
|
);
|
|
files_eval(
|
|
files::append_file("/mnt/etc/sudoers", "\n%wheel ALL=(ALL) ALL\n"),
|
|
"Add wheel group to sudoers",
|
|
);
|
|
files_eval(
|
|
files::append_file("/mnt/etc/sudoers", "\nDefaults pwfeedback\n"),
|
|
"Add pwfeedback to sudoers",
|
|
);
|
|
}
|
|
}
|
|
|
|
pub fn root_pass(root_pass: &str) {
|
|
exec_eval(
|
|
exec_chroot(
|
|
"bash",
|
|
vec![
|
|
String::from("-c"),
|
|
format!(
|
|
r#"'usermod --password {root_pass} root'"#
|
|
),
|
|
],
|
|
),
|
|
"set root password",
|
|
);
|
|
}
|