]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/networking/red.up/99-fireinfo
Merge branch 'next' into initscripts-cleanup
[ipfire-2.x.git] / src / initscripts / networking / red.up / 99-fireinfo
CommitLineData
e9ef343f
MT
1#!/bin/bash
2
3# Send the fireinfo profile after first boot (if enabled)
4
5INDICATION="/var/run/fireinfo"
6
7if [ ! -e "${INDICATION}" ]; then
8 /usr/bin/sendprofile >/dev/null 2>&1
9
10 touch ${INDICATION}
11fi
12
13exit 0