We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 727377f commit 1f28bafCopy full SHA for 1f28baf
src/actions/mod.rs
@@ -19,7 +19,7 @@ const DEFAULT_MOUNTS: &[(&str, &str)] = &[
19
("CACHE", "/var/cache/apt/archives"),
20
];
21
const APT_UPDATE_SCRIPT: &str = r#"export DEBIAN_FRONTEND=noninteractive;apt-get update -y --allow-releaseinfo-change && apt-get -y -o Dpkg::Options::="--force-confnew" full-upgrade --autoremove --purge"#;
22
-const OMA_UPDATE_SCRIPT: &str = r#"oma upgrade -y --force-confnew --no-progress --force-unsafe-io && oma autoremove -y --no-progress --remove-config"#;
+const OMA_UPDATE_SCRIPT: &str = r#"export OMA_NO_BELL=1 OMA_NO_PROGRESS=1;oma upgrade -y --force-confnew --force-unsafe-io && oma autoremove -y --remove-config"#;
23
24
type MountOptions = (Vec<String>, Vec<(String, &'static str)>);
25
/// Ensure that the directories exist and mounted
0 commit comments