fix legacy references to tftp
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2026-01-14 15:16:31 +11:00
parent 98899e306f
commit 7fac6e3920
2 changed files with 0 additions and 3 deletions

View File

@@ -8,7 +8,6 @@ SUDOERS_FILE="/etc/sudoers.d/${USER}"
# create a group & user if not exists # create a group & user if not exists
getent group "$GROUP" >/dev/null || groupadd -r "$GROUP"; /bin/true getent group "$GROUP" >/dev/null || groupadd -r "$GROUP"; /bin/true
getent passwd "$USER" >/dev/null || useradd -r -g "$GROUP" -m -s /bin/bash -c "vctp service" "$USER" getent passwd "$USER" >/dev/null || useradd -r -g "$GROUP" -m -s /bin/bash -c "vctp service" "$USER"
getent passwd tftp >/dev/null || useradd -r -g tftp -s /sbin/nologin tftp
# create vctp config directory if it doesn't exist # create vctp config directory if it doesn't exist
[ -d /etc/dtms ] || mkdir -p /etc/dtms [ -d /etc/dtms ] || mkdir -p /etc/dtms

View File

@@ -36,5 +36,3 @@ scripts:
depends: depends:
- systemd - systemd
- tftp-server
- dhcp-server