6 lines
140 B
Smarty
Executable file
6 lines
140 B
Smarty
Executable file
#!/bin/bash
|
|
bootflag="/.manufactured"
|
|
if [ ! -f ${bootflag} ]; then
|
|
exec /opt/coins-demo/contrib/firstboot.sh
|
|
touch ${bootflag}
|
|
fi
|