Go to the source code of this file.
|
| string | hardwareprofile.config.SMOON_URL = "http://smolt.mythtv.org/" |
| |
| int | hardwareprofile.config.SECURE = 0 |
| |
| | hardwareprofile.config.confdir = os.path.join(MythDB().dbconfig.confdir, 'HardwareProfile') |
| |
| | hardwareprofile.config.HW_UUID = os.path.join(confdir, 'hw-uuid') |
| |
| | hardwareprofile.config.PUB_UUID = os.path.join(confdir, 'pub-uuid') |
| |
| | hardwareprofile.config.UUID_DB = os.path.join(confdir, 'uuiddb.cfg') |
| |
| | hardwareprofile.config.ADMIN_TOKEN = os.path.join(confdir, 'smolt_token') |
| |
| bool | hardwareprofile.config.FS_T_FILTER = False |
| |
| bool | hardwareprofile.config.FS_M_FILTER = True |
| |
| | hardwareprofile.config.p = Popen(['findmnt', '--noheadings', '--output', 'TARGET', '--raw', '--fstab'], stdout=PIPE) |
| |
| | hardwareprofile.config.FS_MOUNTS = p.stdout.read().decode('utf-8') |
| |
| | hardwareprofile.config.OS = os_detect.get_os_info() |
| |