This commit is contained in:
m][sko 2025-06-18 20:25:58 +00:00 committed by GitHub
commit c268296860
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 5 deletions

View File

@ -10,7 +10,7 @@ ARG DEBCONF_NONINTERACTIVE_SEEN="true"
RUN set -eu && \ RUN set -eu && \
apt-get update && \ apt-get update && \
apt-get --no-install-recommends -y install \ apt-get --no-install-recommends -y install \
wsdd \ wsdd2 \
samba \ samba \
wimtools \ wimtools \
dos2unix \ dos2unix \

View File

@ -104,8 +104,7 @@ finish() {
pid="/var/run/tpm.pid" pid="/var/run/tpm.pid"
[ -s "$pid" ] && pKill "$(<"$pid")" [ -s "$pid" ] && pKill "$(<"$pid")"
pid="/var/run/wsdd.pid" fKill "wsdd2"
[ -s "$pid" ] && pKill "$(<"$pid")"
fKill "smbd" fKill "smbd"

View File

@ -129,8 +129,7 @@ if [[ "${BOOT_MODE:-}" == "windows_legacy" ]]; then
fi fi
else else
# Enable Web Service Discovery on Vista and up # Enable Web Service Discovery on Vista and up
wsdd -i "$interface" -p -n "$hostname" & (sleep 30; wsdd2 -i "$interface" -N "$hostname" -d) &
echo "$!" > /var/run/wsdd.pid
fi fi
return 0 return 0