]> git.ipfire.org Git - ipfire-2.x.git/blob - src/initscripts/init.d/networking/red.up/99-fireinfo
Move all initscripts for the system to src/initscripts/system
[ipfire-2.x.git] / src / initscripts / init.d / networking / red.up / 99-fireinfo
1 #!/bin/bash
2
3 # Send the fireinfo profile after first boot (if enabled)
4
5 INDICATION="/var/run/fireinfo"
6
7 if [ ! -e "${INDICATION}" ]; then
8 /usr/bin/sendprofile >/dev/null 2>&1
9
10 touch ${INDICATION}
11 fi
12
13 exit 0