1#!/bin/sh
2#
3# SPDX-License-Identifier: GPL-2.0-only
4#
5
6### BEGIN INIT INFO
7# Provides:          reboot
8# Required-Start:
9# Required-Stop:
10# Default-Start:
11# Default-Stop:      6
12# Short-Description: Execute the reboot command.
13# Description:
14### END INIT INFO
15
16PATH=/sbin:/bin:/usr/sbin:/usr/bin
17
18echo -n "Rebooting... "
19reboot SED_HALTARGS
20