mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
29 lines
897 B
Python
29 lines
897 B
Python
from bootstrapvz.base import Task
|
|
from bootstrapvz.common import phases
|
|
from . import assets
|
|
from shutil import copy
|
|
import os
|
|
|
|
|
|
class TuneSystem(Task):
|
|
description = 'Tuning system for EC2'
|
|
phase = phases.system_modification
|
|
|
|
@classmethod
|
|
def run(cls, info):
|
|
sysctl_src = os.path.join(assets, 'sysctl.d/tuning.conf')
|
|
sysctl_dst = os.path.join(info.root, 'etc/sysctl.d/01_ec2.conf')
|
|
copy(sysctl_src, sysctl_dst)
|
|
os.chmod(sysctl_dst, 0o644)
|
|
|
|
|
|
class BlackListModules(Task):
|
|
description = 'Blacklisting unused kernel modules'
|
|
phase = phases.system_modification
|
|
|
|
@classmethod
|
|
def run(cls, info):
|
|
blacklist_path = os.path.join(info.root, 'etc/modprobe.d/blacklist.conf')
|
|
with open(blacklist_path, 'a') as blacklist:
|
|
blacklist.write(('blacklist i2c_piix4\n'
|
|
'blacklist psmouse\n'))
|