Commit c3479481 authored by nextime's avatar nextime

Fix wsssh-server Debian package build - missing /usr/sbin directory

- Added mkdir command to create /usr/sbin directory in wsssh-server debian/rules
- Fixed 'No such file or directory' error when installing wssshd-watchdog
- Ensures proper directory structure for watchdog script installation
- Resolves build failure when running build.sh --packages or --debian-only
- Maintains consistency with other directory creation commands
parent 28618aa1
...@@ -111,6 +111,7 @@ override_dh_auto_install: ...@@ -111,6 +111,7 @@ override_dh_auto_install:
mkdir -p debian/wsssh-server/var/lib/wssshd mkdir -p debian/wsssh-server/var/lib/wssshd
mkdir -p debian/wsssh-server/var/log/wssshd mkdir -p debian/wsssh-server/var/log/wssshd
mkdir -p debian/wsssh-server/etc/wssshd mkdir -p debian/wsssh-server/etc/wssshd
mkdir -p debian/wsssh-server/usr/sbin
# Install PyInstaller binary # Install PyInstaller binary
install -m 755 dist/wssshd debian/wsssh-server/usr/bin/ install -m 755 dist/wssshd debian/wsssh-server/usr/bin/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment