04b7641e85
- Add x11proto to redbear-full.toml package list - libxau recipe updated with x11proto dependency and custom build script - Fixes libxau build failure: 'Package xproto was not found'
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
|