* Add assume-yes options to most Linux managers Add `assume-yes` to : - SUSE (Micro) - TW (`zypper`) - PCLinux OS (`apt`) - Solus (`eopkg`) - `pacdef` - Clear Linux (`swupd`)
1048 lines
30 KiB
Rust
1048 lines
30 KiB
Rust
use std::path::{Path, PathBuf};
|
|
use std::process::Command;
|
|
|
|
use color_eyre::eyre::Result;
|
|
use ini::Ini;
|
|
use tracing::{debug, warn};
|
|
|
|
use crate::command::CommandExt;
|
|
use crate::error::{SkipStep, TopgradeError};
|
|
use crate::execution_context::ExecutionContext;
|
|
use crate::steps::os::archlinux;
|
|
use crate::terminal::print_separator;
|
|
use crate::utils::{require, require_option, which, PathExt, REQUIRE_SUDO};
|
|
use crate::{Step, HOME_DIR};
|
|
|
|
static OS_RELEASE_PATH: &str = "/etc/os-release";
|
|
|
|
#[allow(clippy::upper_case_acronyms)]
|
|
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
|
|
pub enum Distribution {
|
|
Alpine,
|
|
Arch,
|
|
Bedrock,
|
|
CentOS,
|
|
ClearLinux,
|
|
Fedora,
|
|
FedoraSilverblue,
|
|
Debian,
|
|
Gentoo,
|
|
OpenMandriva,
|
|
OpenSuseTumbleweed,
|
|
PCLinuxOS,
|
|
Suse,
|
|
SuseMicro,
|
|
Vanilla,
|
|
Void,
|
|
Solus,
|
|
Exherbo,
|
|
NixOS,
|
|
KDENeon,
|
|
}
|
|
|
|
impl Distribution {
|
|
fn parse_os_release(os_release: &Ini) -> Result<Self> {
|
|
let section = os_release.general_section();
|
|
let id = section.get("ID");
|
|
let name = section.get("NAME");
|
|
let variant: Option<Vec<&str>> = section.get("VARIANT").map(|s| s.split_whitespace().collect());
|
|
let id_like: Option<Vec<&str>> = section.get("ID_LIKE").map(|s| s.split_whitespace().collect());
|
|
|
|
Ok(match id {
|
|
Some("alpine") => Distribution::Alpine,
|
|
Some("centos") | Some("rhel") | Some("ol") => Distribution::CentOS,
|
|
Some("clear-linux-os") => Distribution::ClearLinux,
|
|
Some("fedora") | Some("nobara") => {
|
|
return if let Some(variant) = variant {
|
|
if variant.contains(&"Silverblue") {
|
|
Ok(Distribution::FedoraSilverblue)
|
|
} else {
|
|
Ok(Distribution::Fedora)
|
|
}
|
|
} else {
|
|
Ok(Distribution::Fedora)
|
|
}
|
|
}
|
|
|
|
Some("void") => Distribution::Void,
|
|
Some("debian") | Some("pureos") | Some("Deepin") => Distribution::Debian,
|
|
Some("arch") | Some("manjaro-arm") | Some("garuda") | Some("artix") => Distribution::Arch,
|
|
Some("solus") => Distribution::Solus,
|
|
Some("gentoo") => Distribution::Gentoo,
|
|
Some("exherbo") => Distribution::Exherbo,
|
|
Some("nixos") => Distribution::NixOS,
|
|
Some("opensuse-microos") => Distribution::SuseMicro,
|
|
Some("neon") => Distribution::KDENeon,
|
|
Some("openmandriva") => Distribution::OpenMandriva,
|
|
Some("pclinuxos") => Distribution::PCLinuxOS,
|
|
_ => {
|
|
if let Some(name) = name {
|
|
if name.contains("Vanilla") {
|
|
return Ok(Distribution::Vanilla);
|
|
}
|
|
}
|
|
if let Some(id_like) = id_like {
|
|
if id_like.contains(&"debian") || id_like.contains(&"ubuntu") {
|
|
return Ok(Distribution::Debian);
|
|
} else if id_like.contains(&"centos") {
|
|
return Ok(Distribution::CentOS);
|
|
} else if id_like.contains(&"suse") {
|
|
let id_variant = id.unwrap_or_default();
|
|
return if id_variant.contains("tumbleweed") {
|
|
Ok(Distribution::OpenSuseTumbleweed)
|
|
} else {
|
|
Ok(Distribution::Suse)
|
|
};
|
|
} else if id_like.contains(&"arch") || id_like.contains(&"archlinux") {
|
|
return Ok(Distribution::Arch);
|
|
} else if id_like.contains(&"alpine") {
|
|
return Ok(Distribution::Alpine);
|
|
} else if id_like.contains(&"fedora") {
|
|
return Ok(Distribution::Fedora);
|
|
}
|
|
}
|
|
return Err(TopgradeError::UnknownLinuxDistribution.into());
|
|
}
|
|
})
|
|
}
|
|
|
|
pub fn detect() -> Result<Self> {
|
|
if PathBuf::from("/bedrock").exists() {
|
|
return Ok(Distribution::Bedrock);
|
|
}
|
|
|
|
if PathBuf::from(OS_RELEASE_PATH).exists() {
|
|
let os_release = Ini::load_from_file(OS_RELEASE_PATH)?;
|
|
|
|
return Self::parse_os_release(&os_release);
|
|
}
|
|
|
|
Err(TopgradeError::UnknownLinuxDistribution.into())
|
|
}
|
|
|
|
pub fn upgrade(self, ctx: &ExecutionContext) -> Result<()> {
|
|
print_separator("System update");
|
|
|
|
match self {
|
|
Distribution::Alpine => upgrade_alpine_linux(ctx),
|
|
Distribution::Arch => archlinux::upgrade_arch_linux(ctx),
|
|
Distribution::CentOS | Distribution::Fedora => upgrade_redhat(ctx),
|
|
Distribution::FedoraSilverblue => upgrade_fedora_silverblue(ctx),
|
|
Distribution::ClearLinux => upgrade_clearlinux(ctx),
|
|
Distribution::Debian => upgrade_debian(ctx),
|
|
Distribution::Gentoo => upgrade_gentoo(ctx),
|
|
Distribution::Suse => upgrade_suse(ctx),
|
|
Distribution::SuseMicro => upgrade_suse_micro(ctx),
|
|
Distribution::OpenSuseTumbleweed => upgrade_opensuse_tumbleweed(ctx),
|
|
Distribution::Vanilla => upgrade_vanilla(ctx),
|
|
Distribution::Void => upgrade_void(ctx),
|
|
Distribution::Solus => upgrade_solus(ctx),
|
|
Distribution::Exherbo => upgrade_exherbo(ctx),
|
|
Distribution::NixOS => upgrade_nixos(ctx),
|
|
Distribution::KDENeon => upgrade_neon(ctx),
|
|
Distribution::Bedrock => update_bedrock(ctx),
|
|
Distribution::OpenMandriva => upgrade_openmandriva(ctx),
|
|
Distribution::PCLinuxOS => upgrade_pclinuxos(ctx),
|
|
}
|
|
}
|
|
|
|
pub fn show_summary(self) {
|
|
if let Distribution::Arch = self {
|
|
archlinux::show_pacnew();
|
|
}
|
|
}
|
|
|
|
pub fn redhat_based(self) -> bool {
|
|
matches!(self, Distribution::CentOS | Distribution::Fedora)
|
|
}
|
|
}
|
|
|
|
fn update_bedrock(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
|
|
ctx.run_type().execute(sudo).args(["brl", "update"]);
|
|
|
|
let output = Command::new("brl").arg("list").output_checked_utf8()?;
|
|
debug!("brl list: {:?} {:?}", output.stdout, output.stderr);
|
|
|
|
for distribution in output.stdout.trim().lines() {
|
|
debug!("Bedrock distribution {}", distribution);
|
|
match distribution {
|
|
"arch" => archlinux::upgrade_arch_linux(ctx)?,
|
|
"debian" | "ubuntu" => upgrade_debian(ctx)?,
|
|
"centos" | "fedora" => upgrade_redhat(ctx)?,
|
|
"bedrock" => upgrade_bedrock_strata(ctx)?,
|
|
_ => {
|
|
warn!("Unknown distribution {}", distribution);
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn is_wsl() -> Result<bool> {
|
|
let output = Command::new("uname").arg("-r").output_checked_utf8()?.stdout;
|
|
debug!("Uname output: {}", output);
|
|
Ok(output.contains("microsoft"))
|
|
}
|
|
|
|
fn upgrade_alpine_linux(ctx: &ExecutionContext) -> Result<()> {
|
|
let apk = require("apk")?;
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
|
|
ctx.run_type().execute(sudo).arg(&apk).arg("update").status_checked()?;
|
|
ctx.run_type().execute(sudo).arg(&apk).arg("upgrade").status_checked()
|
|
}
|
|
|
|
fn upgrade_redhat(ctx: &ExecutionContext) -> Result<()> {
|
|
if let Some(ostree) = which("rpm-ostree") {
|
|
if ctx.config().rpm_ostree() {
|
|
let mut command = ctx.run_type().execute(ostree);
|
|
command.arg("upgrade");
|
|
return command.status_checked();
|
|
}
|
|
};
|
|
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command
|
|
.arg(which("dnf").unwrap_or_else(|| Path::new("yum").to_path_buf()))
|
|
.arg(if ctx.config().redhat_distro_sync() {
|
|
"distro-sync"
|
|
} else {
|
|
"upgrade"
|
|
});
|
|
|
|
if let Some(args) = ctx.config().dnf_arguments() {
|
|
command.args(args.split_whitespace());
|
|
}
|
|
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
|
|
command.status_checked()?;
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_fedora_silverblue(ctx: &ExecutionContext) -> Result<()> {
|
|
let ostree = require("rpm-ostree")?;
|
|
let mut command = ctx.run_type().execute(ostree);
|
|
command.arg("upgrade");
|
|
command.status_checked()?;
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_bedrock_strata(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type().execute(sudo).args(["brl", "update"]).status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_suse(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["zypper", "refresh"])
|
|
.status_checked()?;
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg("zypper")
|
|
.arg(if ctx.config().suse_dup() {
|
|
"dist-upgrade"
|
|
} else {
|
|
"update"
|
|
})
|
|
.arg(if ctx.config().yes(Step::System) { "-y" } else { "" })
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_opensuse_tumbleweed(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["zypper", "refresh"])
|
|
.status_checked()?;
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg("zypper")
|
|
.arg("dist-upgrade")
|
|
.arg(if ctx.config().yes(Step::System) { "-y" } else { "" })
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_suse_micro(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg("transactional-update")
|
|
.arg(if ctx.config().yes(Step::System) { "-n" } else { "" })
|
|
.arg("dup")
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_openmandriva(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
|
|
command.arg(&which("dnf").unwrap()).arg("upgrade");
|
|
|
|
if let Some(args) = ctx.config().dnf_arguments() {
|
|
command.args(args.split_whitespace());
|
|
}
|
|
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
|
|
command.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
fn upgrade_pclinuxos(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let mut command_update = ctx.run_type().execute(sudo);
|
|
|
|
command_update.arg(&which("apt-get").unwrap()).arg("update");
|
|
|
|
if let Some(args) = ctx.config().dnf_arguments() {
|
|
command_update.args(args.split_whitespace());
|
|
}
|
|
|
|
if ctx.config().yes(Step::System) {
|
|
command_update.arg("-y");
|
|
}
|
|
|
|
command_update.status_checked()?;
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg(&which("apt-get").unwrap())
|
|
.arg("dist-upgrade")
|
|
.arg(if ctx.config().yes(Step::System) { "-y" } else { "" })
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_vanilla(ctx: &ExecutionContext) -> Result<()> {
|
|
let apx = require("apx")?;
|
|
|
|
let mut update = ctx.run_type().execute(&apx);
|
|
update.args(["update", "--all"]);
|
|
if ctx.config().yes(Step::System) {
|
|
update.arg("-y");
|
|
}
|
|
update.status_checked()?;
|
|
|
|
let mut upgrade = ctx.run_type().execute(&apx);
|
|
update.args(["upgrade", "--all"]);
|
|
if ctx.config().yes(Step::System) {
|
|
upgrade.arg("-y");
|
|
}
|
|
upgrade.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_void(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command.args(["xbps-install", "-Su", "xbps"]);
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
command.status_checked()?;
|
|
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command.args(["xbps-install", "-u"]);
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
command.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_gentoo(ctx: &ExecutionContext) -> Result<()> {
|
|
let run_type = ctx.run_type();
|
|
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
if let Some(layman) = which("layman") {
|
|
run_type
|
|
.execute(sudo)
|
|
.arg(layman)
|
|
.args(["-s", "ALL"])
|
|
.status_checked()?;
|
|
}
|
|
|
|
println!("Syncing portage");
|
|
run_type
|
|
.execute(sudo)
|
|
.args(["emerge", "--sync"])
|
|
.args(
|
|
ctx.config()
|
|
.emerge_sync_flags()
|
|
.map(|s| s.split_whitespace().collect())
|
|
.unwrap_or_else(|| vec!["-q"]),
|
|
)
|
|
.status_checked()?;
|
|
|
|
if let Some(eix_update) = which("eix-update") {
|
|
run_type.execute(sudo).arg(eix_update).status_checked()?;
|
|
}
|
|
|
|
run_type
|
|
.execute(sudo)
|
|
.arg("emerge")
|
|
.args(
|
|
ctx.config()
|
|
.emerge_update_flags()
|
|
.map(|s| s.split_whitespace().collect())
|
|
.unwrap_or_else(|| vec!["-uDNa", "--with-bdeps=y", "world"]),
|
|
)
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_debian(ctx: &ExecutionContext) -> Result<()> {
|
|
let apt = which("apt-fast")
|
|
.or_else(|| {
|
|
if which("mist").is_some() {
|
|
Some(PathBuf::from("mist"))
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
.or_else(|| {
|
|
if Path::new("/usr/bin/nala").exists() {
|
|
Some(Path::new("/usr/bin/nala").to_path_buf())
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
.unwrap_or_else(|| PathBuf::from("apt-get"));
|
|
|
|
let is_mist = apt.ends_with("mist");
|
|
let is_nala = apt.ends_with("nala");
|
|
|
|
// MIST does not require `sudo`
|
|
if is_mist {
|
|
ctx.run_type().execute(&apt).arg("update").status_checked()?;
|
|
ctx.run_type().execute(&apt).arg("upgrade").status_checked()?;
|
|
|
|
// Simply return as MIST does not have `clean` and `autoremove`
|
|
// subcommands, neither the `-y` option (for now maybe?).
|
|
return Ok(());
|
|
}
|
|
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
if !is_nala {
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg(&apt)
|
|
.arg("update")
|
|
.status_checked_with_codes(&[0, 100])?;
|
|
}
|
|
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command.arg(&apt);
|
|
if is_nala {
|
|
command.arg("upgrade");
|
|
} else {
|
|
command.arg("dist-upgrade");
|
|
};
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
if let Some(args) = ctx.config().apt_arguments() {
|
|
command.args(args.split_whitespace());
|
|
}
|
|
command.status_checked()?;
|
|
|
|
if ctx.config().cleanup() {
|
|
ctx.run_type().execute(sudo).arg(&apt).arg("clean").status_checked()?;
|
|
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command.arg(&apt).arg("autoremove");
|
|
if ctx.config().yes(Step::System) {
|
|
command.arg("-y");
|
|
}
|
|
command.status_checked()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_deb_get(ctx: &ExecutionContext) -> Result<()> {
|
|
let deb_get = require("deb-get")?;
|
|
|
|
print_separator("deb-get");
|
|
|
|
ctx.run_type().execute(&deb_get).arg("update").status_checked()?;
|
|
ctx.run_type().execute(&deb_get).arg("upgrade").status_checked()?;
|
|
|
|
if ctx.config().cleanup() {
|
|
ctx.run_type().execute(&deb_get).arg("clean").status_checked()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_solus(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg("eopkg")
|
|
.arg(if ctx.config().yes(Step::System) { "-y" } else { "" })
|
|
.arg("upgrade")
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_am(ctx: &ExecutionContext) -> Result<()> {
|
|
let am = require("am")?;
|
|
|
|
print_separator("AM");
|
|
|
|
let mut am = ctx.run_type().execute(am);
|
|
|
|
if ctx.config().yes(Step::AM) {
|
|
am.arg("-U");
|
|
} else {
|
|
am.arg("-u");
|
|
}
|
|
|
|
am.status_checked()
|
|
}
|
|
|
|
pub fn run_appman(ctx: &ExecutionContext) -> Result<()> {
|
|
let appman = require("appman")?;
|
|
|
|
print_separator("appman");
|
|
|
|
ctx.run_type().execute(appman).arg("-u").status_checked()
|
|
}
|
|
|
|
pub fn run_pacdef(ctx: &ExecutionContext) -> Result<()> {
|
|
let pacdef = require("pacdef")?;
|
|
|
|
print_separator("pacdef");
|
|
|
|
let output = ctx.run_type().execute(&pacdef).arg("version").output_checked()?;
|
|
let string = String::from_utf8(output.stdout)?;
|
|
let new_version = string.contains("version: 1");
|
|
|
|
if new_version {
|
|
ctx.run_type()
|
|
.execute(&pacdef)
|
|
.args(["package", "sync"])
|
|
.arg(if ctx.config().yes(Step::System) {
|
|
"--noconfirm"
|
|
} else {
|
|
""
|
|
})
|
|
.status_checked()?;
|
|
|
|
println!();
|
|
ctx.run_type()
|
|
.execute(&pacdef)
|
|
.args(["package", "review"])
|
|
.status_checked()?;
|
|
} else {
|
|
ctx.run_type()
|
|
.execute(&pacdef)
|
|
.arg("sync")
|
|
.arg(if ctx.config().yes(Step::System) {
|
|
"--noconfirm"
|
|
} else {
|
|
""
|
|
})
|
|
.status_checked()?;
|
|
|
|
println!();
|
|
ctx.run_type().execute(&pacdef).arg("review").status_checked()?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_pacstall(ctx: &ExecutionContext) -> Result<()> {
|
|
let pacstall = require("pacstall")?;
|
|
|
|
print_separator("Pacstall");
|
|
|
|
let mut update_cmd = ctx.run_type().execute(&pacstall);
|
|
let mut upgrade_cmd = ctx.run_type().execute(pacstall);
|
|
|
|
if ctx.config().yes(Step::Pacstall) {
|
|
update_cmd.arg("-P");
|
|
upgrade_cmd.arg("-P");
|
|
}
|
|
|
|
update_cmd.arg("-U").status_checked()?;
|
|
upgrade_cmd.arg("-Up").status_checked()
|
|
}
|
|
|
|
pub fn run_packer_nu(ctx: &ExecutionContext) -> Result<()> {
|
|
let nu = require("nu")?;
|
|
let packer_home = HOME_DIR.join(".local/share/nushell/packer");
|
|
|
|
packer_home.clone().require()?;
|
|
|
|
print_separator("packer.nu");
|
|
|
|
ctx.run_type()
|
|
.execute(nu)
|
|
.env("PWD", "/")
|
|
.env("NU_PACKER_HOME", packer_home)
|
|
.args([
|
|
"-c",
|
|
"use ~/.local/share/nushell/packer/start/packer.nu/api_layer/packer.nu; packer update",
|
|
])
|
|
.status_checked()
|
|
}
|
|
|
|
fn upgrade_clearlinux(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["swupd", "update"])
|
|
.arg(if ctx.config().yes(Step::System) {
|
|
"--assume=yes"
|
|
} else {
|
|
""
|
|
})
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_exherbo(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
ctx.run_type().execute(sudo).args(["cave", "sync"]).status_checked()?;
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["cave", "resolve", "world", "-c1", "-Cs", "-km", "-Km", "-x"])
|
|
.status_checked()?;
|
|
|
|
if ctx.config().cleanup() {
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["cave", "purge", "-x"])
|
|
.status_checked()?;
|
|
}
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["cave", "fix-linkage", "-x", "--", "-Cs"])
|
|
.status_checked()?;
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["eclectic", "config", "interactive"])
|
|
.status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_nixos(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let mut command = ctx.run_type().execute(sudo);
|
|
command.args(["/run/current-system/sw/bin/nixos-rebuild", "switch", "--upgrade"]);
|
|
|
|
if let Some(args) = ctx.config().nix_arguments() {
|
|
command.args(args.split_whitespace());
|
|
}
|
|
command.status_checked()?;
|
|
|
|
if ctx.config().cleanup() {
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.args(["/run/current-system/sw/bin/nix-collect-garbage", "-d"])
|
|
.status_checked()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn upgrade_neon(ctx: &ExecutionContext) -> Result<()> {
|
|
// KDE neon is ubuntu based but uses it's own manager, pkcon
|
|
// running apt update with KDE neon is an error
|
|
// in theory rpm based distributions use pkcon as well, though that
|
|
// seems rare
|
|
// if that comes up we need to create a Distribution::PackageKit or some such
|
|
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let pkcon = which("pkcon").unwrap();
|
|
// pkcon ignores update with update and refresh provided together
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg(&pkcon)
|
|
.arg("refresh")
|
|
.status_checked()?;
|
|
let mut exe = ctx.run_type().execute(sudo);
|
|
let cmd = exe.arg(&pkcon).arg("update");
|
|
if ctx.config().yes(Step::System) {
|
|
cmd.arg("-y");
|
|
}
|
|
if ctx.config().cleanup() {
|
|
cmd.arg("--autoremove");
|
|
}
|
|
// from pkcon man, exit code 5 is 'Nothing useful was done.'
|
|
cmd.status_checked_with_codes(&[5])?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_needrestart(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let needrestart = require("needrestart")?;
|
|
let distribution = Distribution::detect()?;
|
|
|
|
if distribution.redhat_based() {
|
|
return Err(SkipStep(String::from("needrestart will be ran by the package manager")).into());
|
|
}
|
|
|
|
print_separator("Check for needed restarts");
|
|
|
|
ctx.run_type().execute(sudo).arg(needrestart).status_checked()?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_fwupdmgr(ctx: &ExecutionContext) -> Result<()> {
|
|
let fwupdmgr = require("fwupdmgr")?;
|
|
|
|
if is_wsl()? {
|
|
return Err(SkipStep(String::from("Should not run in WSL")).into());
|
|
}
|
|
|
|
print_separator("Firmware upgrades");
|
|
|
|
ctx.run_type()
|
|
.execute(&fwupdmgr)
|
|
.arg("refresh")
|
|
.status_checked_with_codes(&[2])?;
|
|
|
|
let mut updmgr = ctx.run_type().execute(&fwupdmgr);
|
|
|
|
if ctx.config().firmware_upgrade() {
|
|
updmgr.arg("update");
|
|
if ctx.config().yes(Step::System) {
|
|
updmgr.arg("-y");
|
|
}
|
|
} else {
|
|
updmgr.arg("get-updates");
|
|
}
|
|
updmgr.status_checked_with_codes(&[2])
|
|
}
|
|
|
|
pub fn run_flatpak(ctx: &ExecutionContext) -> Result<()> {
|
|
let flatpak = require("flatpak")?;
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let cleanup = ctx.config().cleanup();
|
|
let yes = ctx.config().yes(Step::Flatpak);
|
|
let run_type = ctx.run_type();
|
|
print_separator("Flatpak User Packages");
|
|
|
|
let mut update_args = vec!["update", "--user"];
|
|
if yes {
|
|
update_args.push("-y");
|
|
}
|
|
run_type.execute(&flatpak).args(&update_args).status_checked()?;
|
|
|
|
if cleanup {
|
|
let mut cleanup_args = vec!["uninstall", "--user", "--unused"];
|
|
if yes {
|
|
cleanup_args.push("-y");
|
|
}
|
|
run_type.execute(&flatpak).args(&cleanup_args).status_checked()?;
|
|
}
|
|
|
|
print_separator("Flatpak System Packages");
|
|
if ctx.config().flatpak_use_sudo() || std::env::var("SSH_CLIENT").is_ok() {
|
|
let mut update_args = vec!["update", "--system"];
|
|
if yes {
|
|
update_args.push("-y");
|
|
}
|
|
run_type
|
|
.execute(sudo)
|
|
.arg(&flatpak)
|
|
.args(&update_args)
|
|
.status_checked()?;
|
|
if cleanup {
|
|
let mut cleanup_args = vec!["uninstall", "--system", "--unused"];
|
|
if yes {
|
|
cleanup_args.push("-y");
|
|
}
|
|
run_type
|
|
.execute(sudo)
|
|
.arg(flatpak)
|
|
.args(&cleanup_args)
|
|
.status_checked()?;
|
|
}
|
|
} else {
|
|
let mut update_args = vec!["update", "--system"];
|
|
if yes {
|
|
update_args.push("-y");
|
|
}
|
|
run_type.execute(&flatpak).args(&update_args).status_checked()?;
|
|
if cleanup {
|
|
let mut cleanup_args = vec!["uninstall", "--system", "--unused"];
|
|
if yes {
|
|
cleanup_args.push("-y");
|
|
}
|
|
run_type.execute(flatpak).args(&cleanup_args).status_checked()?;
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_snap(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let snap = require("snap")?;
|
|
|
|
if !PathBuf::from("/var/snapd.socket").exists() && !PathBuf::from("/run/snapd.socket").exists() {
|
|
return Err(SkipStep(String::from("Snapd socket does not exist")).into());
|
|
}
|
|
print_separator("snap");
|
|
|
|
ctx.run_type().execute(sudo).arg(snap).arg("refresh").status_checked()
|
|
}
|
|
|
|
pub fn run_pihole_update(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let pihole = require("pihole")?;
|
|
Path::new("/opt/pihole/update.sh").require()?;
|
|
|
|
print_separator("pihole");
|
|
|
|
ctx.run_type().execute(sudo).arg(pihole).arg("-up").status_checked()
|
|
}
|
|
|
|
pub fn run_protonup_update(ctx: &ExecutionContext) -> Result<()> {
|
|
let protonup = require("protonup")?;
|
|
|
|
print_separator("protonup");
|
|
|
|
ctx.run_type().execute(protonup).status_checked()?;
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_distrobox_update(ctx: &ExecutionContext) -> Result<()> {
|
|
let distrobox = require("distrobox")?;
|
|
|
|
print_separator("Distrobox");
|
|
match (
|
|
match (
|
|
ctx.run_type().execute(distrobox).arg("upgrade"),
|
|
ctx.config().distrobox_containers(),
|
|
) {
|
|
(r, Some(c)) => {
|
|
if c.is_empty() {
|
|
return Err(SkipStep("You need to specify at least one container".to_string()).into());
|
|
}
|
|
r.args(c)
|
|
}
|
|
(r, None) => r.arg("--all"),
|
|
},
|
|
ctx.config().distrobox_root(),
|
|
) {
|
|
(r, true) => r.arg("--root"),
|
|
(r, false) => r,
|
|
}
|
|
.status_checked()
|
|
}
|
|
|
|
pub fn run_dkp_pacman_update(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
let dkp_pacman = require("dkp-pacman")?;
|
|
|
|
print_separator("Devkitpro pacman");
|
|
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg(&dkp_pacman)
|
|
.arg("-Syu")
|
|
.status_checked()?;
|
|
|
|
if ctx.config().cleanup() {
|
|
ctx.run_type()
|
|
.execute(sudo)
|
|
.arg(&dkp_pacman)
|
|
.arg("-Scc")
|
|
.status_checked()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn run_config_update(ctx: &ExecutionContext) -> Result<()> {
|
|
let sudo = require_option(ctx.sudo().as_ref(), REQUIRE_SUDO.to_string())?;
|
|
if ctx.config().yes(Step::ConfigUpdate) {
|
|
return Err(SkipStep("Skipped in --yes".to_string()).into());
|
|
}
|
|
|
|
if let Ok(etc_update) = require("etc-update") {
|
|
print_separator("Configuration update");
|
|
ctx.run_type().execute(sudo).arg(etc_update).status_checked()?;
|
|
} else if let Ok(pacdiff) = require("pacdiff") {
|
|
if std::env::var("DIFFPROG").is_err() {
|
|
require("vim")?;
|
|
}
|
|
|
|
print_separator("Configuration update");
|
|
ctx.execute_elevated(&pacdiff, false)?.status_checked()?;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
fn test_template(os_release_file: &str, expected_distribution: Distribution) {
|
|
let os_release = Ini::load_from_str(os_release_file).unwrap();
|
|
assert_eq!(
|
|
Distribution::parse_os_release(&os_release).unwrap(),
|
|
expected_distribution
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_arch_linux() {
|
|
test_template(include_str!("os_release/arch"), Distribution::Arch);
|
|
test_template(include_str!("os_release/arch32"), Distribution::Arch);
|
|
}
|
|
|
|
#[test]
|
|
fn test_centos() {
|
|
test_template(include_str!("os_release/centos"), Distribution::CentOS);
|
|
}
|
|
|
|
#[test]
|
|
fn test_rhel() {
|
|
test_template(include_str!("os_release/rhel"), Distribution::CentOS);
|
|
}
|
|
|
|
#[test]
|
|
fn test_clearlinux() {
|
|
test_template(include_str!("os_release/clearlinux"), Distribution::ClearLinux);
|
|
}
|
|
|
|
#[test]
|
|
fn test_debian() {
|
|
test_template(include_str!("os_release/debian"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_ubuntu() {
|
|
test_template(include_str!("os_release/ubuntu"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_mint() {
|
|
test_template(include_str!("os_release/mint"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_opensuse() {
|
|
test_template(include_str!("os_release/opensuse"), Distribution::Suse);
|
|
}
|
|
|
|
#[test]
|
|
fn test_oraclelinux() {
|
|
test_template(include_str!("os_release/oracle"), Distribution::CentOS);
|
|
}
|
|
|
|
#[test]
|
|
fn test_fedora() {
|
|
test_template(include_str!("os_release/fedora"), Distribution::Fedora);
|
|
}
|
|
|
|
#[test]
|
|
fn test_manjaro() {
|
|
test_template(include_str!("os_release/manjaro"), Distribution::Arch);
|
|
}
|
|
|
|
#[test]
|
|
fn test_manjaro_arm() {
|
|
test_template(include_str!("os_release/manjaro-arm"), Distribution::Arch);
|
|
}
|
|
|
|
#[test]
|
|
fn test_gentoo() {
|
|
test_template(include_str!("os_release/gentoo"), Distribution::Gentoo);
|
|
}
|
|
|
|
#[test]
|
|
fn test_exherbo() {
|
|
test_template(include_str!("os_release/exherbo"), Distribution::Exherbo);
|
|
}
|
|
|
|
#[test]
|
|
fn test_amazon_linux() {
|
|
test_template(include_str!("os_release/amazon_linux"), Distribution::CentOS);
|
|
}
|
|
|
|
#[test]
|
|
fn test_nixos() {
|
|
test_template(include_str!("os_release/nixos"), Distribution::NixOS);
|
|
}
|
|
|
|
#[test]
|
|
fn test_fedoraremixonwsl() {
|
|
test_template(include_str!("os_release/fedoraremixforwsl"), Distribution::Fedora);
|
|
}
|
|
|
|
#[test]
|
|
fn test_pengwinonwsl() {
|
|
test_template(include_str!("os_release/pengwinonwsl"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_artix() {
|
|
test_template(include_str!("os_release/artix"), Distribution::Arch);
|
|
}
|
|
|
|
#[test]
|
|
fn test_garuda() {
|
|
test_template(include_str!("os_release/garuda"), Distribution::Arch);
|
|
}
|
|
|
|
#[test]
|
|
fn test_pureos() {
|
|
test_template(include_str!("os_release/pureos"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_deepin() {
|
|
test_template(include_str!("os_release/deepin"), Distribution::Debian);
|
|
}
|
|
|
|
#[test]
|
|
fn test_vanilla() {
|
|
test_template(include_str!("os_release/vanilla"), Distribution::Vanilla);
|
|
}
|
|
|
|
#[test]
|
|
fn test_solus() {
|
|
test_template(include_str!("os_release/solus"), Distribution::Solus);
|
|
}
|
|
}
|