17 lines
462 B
Plaintext
17 lines
462 B
Plaintext
|
#!/bin/sh -e
|
||
|
#
|
||
|
# rc.local
|
||
|
#
|
||
|
# This script is executed at the end of each multiuser runlevel.
|
||
|
# value on error.
|
||
|
#
|
||
|
# In order to enable or disable this script just change the execution
|
||
|
# bits.
|
||
|
#
|
||
|
# By default this script does nothing.
|
||
|
|
||
|
# Replace wifi hostname
|
||
|
sed -i "s/^ssid.*/ssid=PlanktoScope-$(python3 -c "import planktoscope.uuidName as uuidName; print(uuidName.machineName(machine=uuidName.getSerial()).replace(' ','_'))")/" /etc/hostapd/hostapd.conf
|
||
|
|
||
|
exit 0
|