We initially implemented run() and out() functions because we couldn't use subprocess.run() since we were on Python 3.4. But since we moved to relocatable python3, we don't need to implement it ourselves. Why we keep using these functions are, because we needed to set environemnt variable to set PATH. Since we recently moved away these codes to python thunk, we finally able to drop run() and out(), switch to subprocess.run().
73 lines
2.6 KiB
Python
Executable File
73 lines
2.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2018 ScyllaDB
|
|
#
|
|
|
|
#
|
|
# This file is part of Scylla.
|
|
#
|
|
# Scylla is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Scylla is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
import argparse
|
|
from scylla_util import *
|
|
from subprocess import run
|
|
|
|
if __name__ == '__main__':
|
|
if os.getuid() > 0:
|
|
print('Requires root permission.')
|
|
sys.exit(1)
|
|
parser = argparse.ArgumentParser(description='Optimize boot parameter settings for Scylla.')
|
|
parser.add_argument('--ami', action='store_true', default=False,
|
|
help='setup AMI instance')
|
|
args = parser.parse_args()
|
|
|
|
if not args.ami:
|
|
sys.exit(0)
|
|
if not os.path.exists('/etc/default/grub') and not os.path.exists('/boot/grub/menu.lst'):
|
|
print('Unsupported bootloader')
|
|
sys.exit(1)
|
|
|
|
if os.path.exists('/etc/default/grub'):
|
|
cfg = sysconfig_parser('/etc/default/grub')
|
|
for k in ['GRUB_CMDLINE_LINUX', 'GRUB_CMDLINE_LINUX_DEFAULT']:
|
|
if cfg.has_option(k):
|
|
grub_key = k
|
|
break
|
|
if not grub_key:
|
|
print('GRUB_CMDLINE_LINUX does not found in /etc/default/grub')
|
|
sys.exit(1)
|
|
|
|
cmdline_linux = cfg.get(grub_key)
|
|
if len(re.findall(r'.*clocksource', cmdline_linux)) == 0:
|
|
cmdline_linux += ' clocksource=tsc tsc=reliable'
|
|
cfg.set(grub_key, cmdline_linux)
|
|
cfg.commit()
|
|
if is_debian_variant():
|
|
run('update-grub', shell=True, check=True)
|
|
else:
|
|
run('grub2-mkconfig -o /boot/grub2/grub.cfg', shell=True, check=True)
|
|
|
|
# if is_ec2() and os.path.exists('/boot/grub/menu.lst'):
|
|
if os.path.exists('/boot/grub/menu.lst'):
|
|
with open('/boot/grub/menu.lst') as f:
|
|
cur = f.read()
|
|
if len(re.findall(r'^\s*kernel.*clocksource', cur, flags=re.MULTILINE)) == 0:
|
|
new = re.sub(r'(^\s*kernel.*)', r'\1 clocksource=tsc tsc=reliable ', cur, flags=re.MULTILINE)
|
|
with open('/boot/grub/menu.lst', 'w') as f:
|
|
f.write(new)
|