From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 280FA1FF15C for ; Wed, 21 Aug 2024 11:41:50 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id DE81A16194; Wed, 21 Aug 2024 11:41:05 +0200 (CEST) From: Christoph Heiss To: pve-devel@lists.proxmox.com Date: Wed, 21 Aug 2024 11:40:03 +0200 Message-ID: <20240821094023.667806-2-c.heiss@proxmox.com> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20240821094023.667806-1-c.heiss@proxmox.com> References: <20240821094023.667806-1-c.heiss@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.031 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment RCVD_IN_VALIDITY_CERTIFIED_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_RPBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. RCVD_IN_VALIDITY_SAFE_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [unconfigured.sh, http.rs, main.rs] Subject: [pve-devel] [PATCH installer v3 01/20] tree-wide: fix some typos X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox VE development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pve-devel-bounces@lists.proxmox.com Sender: "pve-devel" Signed-off-by: Christoph Heiss --- Changes v2 -> v3: * fix some more typos Changes v1 -> v2: * new patch proxmox-auto-install-assistant/src/main.rs | 4 ++-- proxmox-fetch-answer/src/fetch_plugins/http.rs | 2 +- proxmox-installer-common/src/disk_checks.rs | 2 +- unconfigured.sh | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/proxmox-auto-install-assistant/src/main.rs b/proxmox-auto-install-assistant/src/main.rs index 1447175..c6f1ec8 100644 --- a/proxmox-auto-install-assistant/src/main.rs +++ b/proxmox-auto-install-assistant/src/main.rs @@ -55,7 +55,7 @@ struct CommandDeviceInfo { /// Filters support the following syntax: /// ? Match a single character /// * Match any number of characters -/// [a], [0-9] Specifc character or range of characters +/// [a], [0-9] Specific character or range of characters /// [!a] Negate a specific character of range /// /// To avoid globbing characters being interpreted by the shell, use single quotes. @@ -419,7 +419,7 @@ fn get_iso_uuid(iso: &PathBuf) -> Result { uuid = line .split(' ') .last() - .ok_or_else(|| format_err!("xorriso did behave unexpextedly"))? + .ok_or_else(|| format_err!("xorriso did behave unexpectedly"))? .replace('\'', "") .trim() .into(); diff --git a/proxmox-fetch-answer/src/fetch_plugins/http.rs b/proxmox-fetch-answer/src/fetch_plugins/http.rs index 21bc6a2..f5af226 100644 --- a/proxmox-fetch-answer/src/fetch_plugins/http.rs +++ b/proxmox-fetch-answer/src/fetch_plugins/http.rs @@ -194,7 +194,7 @@ mod http_post { /// openssl s_client -connect :443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -sha256 -noout -in /dev/stdin /// ``` /// - /// # Arguemnts + /// # Arguments /// * `url` - URL to call /// * `fingerprint` - SHA256 cert fingerprint if certificate pinning should be used. Optional. /// * `payload` - The payload to send to the server. Expected to be a JSON formatted string. diff --git a/proxmox-installer-common/src/disk_checks.rs b/proxmox-installer-common/src/disk_checks.rs index 89b300c..ecc43bd 100644 --- a/proxmox-installer-common/src/disk_checks.rs +++ b/proxmox-installer-common/src/disk_checks.rs @@ -24,7 +24,7 @@ pub fn check_for_duplicate_disks(disks: &[Disk]) -> Result<(), &Disk> { /// /// # Arguments /// -/// * `disks` - A list of disks to check the lenght of. +/// * `disks` - A list of disks to check the length of. /// * `min` - Minimum number of disks pub fn check_raid_min_disks(disks: &[Disk], min: usize) -> Result<(), String> { if disks.len() < min { diff --git a/unconfigured.sh b/unconfigured.sh index a39e6ad..b1c980a 100755 --- a/unconfigured.sh +++ b/unconfigured.sh @@ -166,7 +166,7 @@ export PREVLEVEL=N mkdir -p /dev/shm mount -t tmpfs tmpfs /dev/shm -# allow pseudo terminals for debuggin in X +# allow pseudo terminals for debugging in X mkdir -p /dev/pts mount -vt devpts devpts /dev/pts -o gid=5,mode=620 @@ -190,7 +190,7 @@ if command -v dbus-daemon; then mkdir /run/dbus dbus-daemon --system --syslog-only - if [ $proxdebug -ne 0 ]; then # FIXME: better intergration, e.g., use iwgtk? + if [ $proxdebug -ne 0 ]; then # FIXME: better integration, e.g., use iwgtk? handle_wireless # no-op if not wireless dev is found fi fi -- 2.45.2 _______________________________________________ pve-devel mailing list pve-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel