They don't work unless #! are the first two bytes of the file. This is a fix-up for commit d6bc7613ac91e663f573486135946039eeccf8d7 Change-Id: I83c976a538a67eef3d40b50674a255d6e2f3205a Reviewed-by: Thiago Macieira <thiago.macieira@intel.com> Reviewed-by: Lucie Gerard <lucie.gerard@qt.io>
10 lines
339 B
Bash
Executable File
10 lines
339 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2024 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
# Disabled by default, enable it.
|
|
sed -i 's/disable\t\t= yes/disable = no/' /etc/xinetd.d/echo
|
|
sed -i 's/disable\t\t= yes/disable = no/' /etc/xinetd.d/daytime
|
|
|
|
service xinetd restart
|