mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-02 05:23:14 +00:00
* the only way to begin is by beginning * chore: Convert over 3444 migration * fix imports * wip * feat: convert volume * convert: system.rs * wip(convert): Setup * wip properties * wip notifications * wip * wip migration * wip init * wip auth/control * wip action * wip control * wiip 034 * wip 344 * wip some more versions converted * feat: Reserialize the version of the db * wip rest of the versions * wip s9pk/manifest * wip wifi * chore: net/keys * chore: net/dns * wip net/dhcp * wip manager manager-map * gut dependency errors * wip update/mod * detect breakages locally for updates * wip: manager/mod * wip: manager/health * wip: backup/target/mod * fix: Typo addresses * clean control.rs * fix system package id * switch to btreemap for now * config wip * wip manager/mod * install wip Co-authored-by: J H <Blu-J@users.noreply.github.com> * chore: Update the last of the errors * feat: Change the prelude de to borrow * feat: Adding in some more things * chore: add to the prelude * chore: Small fixes * chore: Fixing the small errors * wip: Cleaning up check errors * wip: Fix some of the issues * chore: Fix setup * chore:fix version * chore: prelude, mod, http_reader * wip backup_bulk * chore: Last of the errors * upadte package.json * chore: changes needed for a build * chore: Removing some of the linting errors in the manager * chore: Some linting 101 * fix: Wrong order of who owns what * chore: Remove the unstable * chore: Remove the test in the todo * @dr-bonez did a refactoring on the backup * chore: Make sure that there can only be one override guard at a time * resolve most todos * wip: Add some more tracing to debug an error * wip: Use a mv instead of rename * wip: Revert some of the missing code segments found earlier * chore: Make the build * chore: Something about the lib looks like it iis broken * wip: More instrument and dev working * kill netdummy before creating it * better db analysis tools * fixes from testing * fix: Make add start the service * fix status after install * make wormhole * fix missing icon file * fix data url for icons * fix: Bad deser * bugfixes * fix: Backup * fix: Some of the restor * fix: Restoring works * update frontend patch-db types * hack it in (#2424) * hack it in * optimize * slightly cleaner * handle config pointers * dependency config errs * fix compat * cache docker * fix dependency expectation * fix dependency auto-config --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: J H <Blu-J@users.noreply.github.com> Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
84 lines
2.3 KiB
Rust
84 lines
2.3 KiB
Rust
use rand::{thread_rng, Rng};
|
|
use tokio::process::Command;
|
|
use tracing::instrument;
|
|
|
|
use crate::util::Invoke;
|
|
use crate::{Error, ErrorKind};
|
|
#[derive(Clone, serde::Deserialize, serde::Serialize, Debug)]
|
|
pub struct Hostname(pub String);
|
|
|
|
lazy_static::lazy_static! {
|
|
static ref ADJECTIVES: Vec<String> = include_str!("./assets/adjectives.txt").lines().map(|x| x.to_string()).collect();
|
|
static ref NOUNS: Vec<String> = include_str!("./assets/nouns.txt").lines().map(|x| x.to_string()).collect();
|
|
}
|
|
impl AsRef<str> for Hostname {
|
|
fn as_ref(&self) -> &str {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
impl Hostname {
|
|
pub fn lan_address(&self) -> String {
|
|
format!("https://{}.local", self.0)
|
|
}
|
|
|
|
pub fn local_domain_name(&self) -> String {
|
|
format!("{}.local", self.0)
|
|
}
|
|
pub fn no_dot_host_name(&self) -> String {
|
|
self.0.to_owned()
|
|
}
|
|
}
|
|
|
|
pub fn generate_hostname() -> Hostname {
|
|
let mut rng = thread_rng();
|
|
let adjective = &ADJECTIVES[rng.gen_range(0..ADJECTIVES.len())];
|
|
let noun = &NOUNS[rng.gen_range(0..NOUNS.len())];
|
|
Hostname(format!("{adjective}-{noun}"))
|
|
}
|
|
|
|
pub fn generate_id() -> String {
|
|
let id = uuid::Uuid::new_v4();
|
|
id.to_string()
|
|
}
|
|
|
|
#[instrument(skip_all)]
|
|
pub async fn get_current_hostname() -> Result<Hostname, Error> {
|
|
let out = Command::new("hostname")
|
|
.invoke(ErrorKind::ParseSysInfo)
|
|
.await?;
|
|
let out_string = String::from_utf8(out)?;
|
|
Ok(Hostname(out_string.trim().to_owned()))
|
|
}
|
|
|
|
#[instrument(skip_all)]
|
|
pub async fn set_hostname(hostname: &Hostname) -> Result<(), Error> {
|
|
let hostname: &String = &hostname.0;
|
|
Command::new("hostnamectl")
|
|
.arg("--static")
|
|
.arg("set-hostname")
|
|
.arg(hostname)
|
|
.invoke(ErrorKind::ParseSysInfo)
|
|
.await?;
|
|
Command::new("sed")
|
|
.arg("-i")
|
|
.arg(format!(
|
|
"s/\\(\\s\\)localhost\\( {hostname}\\)\\?/\\1localhost {hostname}/g"
|
|
))
|
|
.arg("/etc/hosts")
|
|
.invoke(ErrorKind::ParseSysInfo)
|
|
.await?;
|
|
Ok(())
|
|
}
|
|
|
|
#[instrument(skip_all)]
|
|
pub async fn sync_hostname(hostname: &Hostname) -> Result<(), Error> {
|
|
set_hostname(hostname).await?;
|
|
Command::new("systemctl")
|
|
.arg("restart")
|
|
.arg("avahi-daemon")
|
|
.invoke(crate::ErrorKind::Network)
|
|
.await?;
|
|
Ok(())
|
|
}
|