Files
scylladb/dist/common/scripts/scylla_rsyslog_setup
Avi Kivity fcb8d040e8 treewide: use Software Package Data Exchange (SPDX) license identifiers
Instead of lengthy blurbs, switch to single-line, machine-readable
standardized (https://spdx.dev) license identifiers. The Linux kernel
switched long ago, so there is strong precedent.

Three cases are handled: AGPL-only, Apache-only, and dual licensed.
For the latter case, I chose (AGPL-3.0-or-later and Apache-2.0),
reasoning that our changes are extensive enough to apply our license.

The changes we applied mechanically with a script, except to
licenses/README.md.

Closes #9937
2022-01-18 12:15:18 +01:00

30 lines
1013 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020-present ScyllaDB
#
#
# SPDX-License-Identifier: AGPL-3.0-or-later
import os
import argparse
from scylla_util import *
def update_rsysconf(rsyslog_server):
if ':' not in rsyslog_server:
rsyslog_server = rsyslog_server + ':1514'
with open('/etc/rsyslog.d/scylla.conf', 'w') as f:
f.write("if $programname == 'scylla' then @@{};RSYSLOG_SyslogProtocol23Format\n".format(rsyslog_server))
systemd_unit('rsyslog.service').restart()
if __name__ == '__main__':
if os.getuid() > 0:
print('Requires root permission.')
sys.exit(1)
parser = argparse.ArgumentParser(description='Updating rsyslog to send logs to a remote server.')
parser.add_argument('--remote-server', required=True,
help='specify remote rsyslog server, use ip:port format. If not port is included, Scylla-Monitoring port will be used')
args = parser.parse_args()
update_rsysconf(args.remote_server)