From 32a24924258bf72864c8e8bb226dc0a5ceee2c50 Mon Sep 17 00:00:00 2001 From: networkException Date: Mon, 23 Dec 2024 17:38:18 +0100 Subject: [PATCH] Main: Remove sd_notify feature This patch removes the call to sd_notify introduced in f00b7d01336f0d032f56467c9d9d37a0128eda34. This is no longer needed as the idle feature got removed, see the previous commit. --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index abe064b..8b5eb01 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,6 @@ use std::path::PathBuf; use anyhow::Result; use clap::Parser; -use sd_notify::NotifyState; use serde_json::{Map, Value}; use url_escape; @@ -94,7 +93,5 @@ fn main() -> Result<()> { println!("Wrote secret file to '{}'", output_path.to_string_lossy()); - sd_notify::notify(true, &[NotifyState::Ready])?; - Ok(()) }