File: systemd.py

package info (click to toggle)
python3-dmm 0.1.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 540 kB
  • sloc: python: 441; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
Interact with systemd tools and services.
"""

import subprocess
import json

def list_timezones():
    """
    Just return a list of available timezones
    """
    timezones = subprocess.check_output(["/usr/bin/timezonectl", "list-timezones",
                                            ]).decode("utf-8").split("\n")
    return timezones