mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-24 08:05:13 +08:00
make accessrights: Silent error when no bluetooth group
This commit is contained in:
parent
ab5213126d
commit
bf522bf663
1 changed files with 6 additions and 5 deletions
11
Makefile
11
Makefile
|
@ -263,12 +263,13 @@ udev:
|
|||
# you need to logout, relogin to get this access right correct.
|
||||
# Finally, you might need to run the proxmark3 client under SUDO on some systems
|
||||
accessrights:
|
||||
ifneq ($(wildcard /etc/arch-release),) #If user is running ArchLinux
|
||||
sudo usermod -aG uucp $(USER) #Use specific command and group
|
||||
getent group bluetooth >/dev/null && sudo usermod -aG bluetooth $(USER) #Use specific command and group
|
||||
ifneq ($(wildcard /etc/arch-release),)
|
||||
#If user is running ArchLinux, use specific command and group
|
||||
$(Q)sudo usermod -aG uucp $(USER)
|
||||
$(Q)getent group bluetooth >/dev/null && sudo usermod -aG bluetooth $(USER) || true
|
||||
else
|
||||
sudo adduser $(USER) dialout
|
||||
getent group bluetooth >/dev/null && sudo adduser $(USER) bluetooth
|
||||
$(Q)sudo adduser $(USER) dialout
|
||||
$(Q)getent group bluetooth >/dev/null && sudo adduser $(USER) bluetooth || true
|
||||
endif
|
||||
|
||||
# easy printing of MAKE VARIABLES
|
||||
|
|
Loading…
Reference in a new issue