Best Python code snippet using avocado_python
linux.py
Source:linux.py
...21Linux OS utilities22"""23import os24from afutils import genio25def get_proc_sys(key):26 """27 Read values from /proc/sys28 :param key: A location under /proc/sys29 :return: The single-line sysctl value as a string.30 """31 path = os.path.join('/proc/sys/%s', key)32 return genio.read_one_line(path)33def set_proc_sys(key, value):34 """35 Set values on /proc/sys36 :param key: A location under /proc/sys37 :param value: If not None, a value to write into the sysctl.38 :return: The single-line sysctl value as a string.39 """40 path = os.path.join('/proc/sys/%s', key)41 genio.write_one_line(path, value)42 return get_proc_sys(key)43def is_selinux_enforcing():44 """45 Returns True if SELinux is in enforcing mode, False if permissive/disabled.46 """47 if '1' in genio.read_one_line('/sys/fs/selinux/enforce'):48 return True49 return False50def enable_selinux_enforcing():51 """52 Enable SELinux Enforcing in system53 :return: True if SELinux enable in enforcing mode, False if not enabled54 """55 genio.write_one_line('/sys/fs/selinux/enforce', '1')56 if is_selinux_enforcing():...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!