Skip to content

Commit

Permalink
Use default group instead
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmo committed Jan 18, 2018
1 parent cc79d86 commit 26eeeef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ tftpd_start:
sudo true
@if sudo which atftpd >/dev/null ; then \
echo "Starting aftpd"; \
sudo atftpd --verbose --bind-address $(TFTP_IPRANGE).100 --daemon --logfile /dev/stdout --no-fork --user $(shell whoami) --group $(shell whoami) $(TFTPD_DIR) & \
sudo atftpd --verbose --bind-address $(TFTP_IPRANGE).100 --daemon --logfile /dev/stdout --no-fork --user $(shell whoami) --group $(shell id -gn) $(TFTPD_DIR) & \
elif sudo which in.tftpd >/dev/null; then \
echo "Starting in.tftpd"; \
sudo in.tftpd --verbose --listen --address $(TFTP_IPRANGE).100 --user $(shell whoami) -s $(TFTPD_DIR) & \
Expand Down

0 comments on commit 26eeeef

Please sign in to comment.