From: "Artur Kowalski" <arturkow2000@gmail.com>
To: Alex Kiernan <alex.kiernan@gmail.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [OE-core] [PATCH 1/3] systemd-systemctl: add support for --global flag
Date: Mon, 13 Jan 2025 22:18:01 +0100 [thread overview]
Message-ID: <73914221-eb80-433e-a37a-37cf046014d5@gmail.com> (raw)
In-Reply-To: <CAO5Uq5SJ8M3SBWB0WrkZZ8rE46J1XEMp45Ubtk-k4v5LgNALcg@mail.gmail.com>
W dniu 12.01.2025 o 16:34, Alex Kiernan pisze:
> On Sun, Jan 12, 2025 at 2:40 PM Artur Kowalski via
> lists.openembedded.org <arturkow2000=gmail.com@lists.openembedded.org>
> wrote:
>> The flag is similar to --user flag as it causes systemctl to operate on
>> user units, but it performs operations globally for all users. This is
>> required to for user presets support.
> "to for"? Drop the "to"?
>
>> Signed-off-by: Artur Kowalski <arturkow2000@gmail.com>
>> ---
>> .../systemd/systemd-systemctl/systemctl | 42 ++++++++++---------
>> 1 file changed, 23 insertions(+), 19 deletions(-)
>>
>> diff --git a/meta/recipes-core/systemd/systemd-systemctl/systemctl b/meta/recipes-core/systemd/systemd-systemctl/systemctl
>> index 2229bc7b6d..9b8fe81459 100755
>> --- a/meta/recipes-core/systemd/systemd-systemctl/systemctl
>> +++ b/meta/recipes-core/systemd/systemd-systemctl/systemctl
>> @@ -29,15 +29,15 @@ class SystemdFile():
>>
>> _clearable_keys = ['WantedBy']
>>
>> - def __init__(self, root, path, instance_unit_name):
>> + def __init__(self, root, path, instance_unit_name, unit_type):
>> self.sections = dict()
>> self._parse(root, path)
>> dirname = os.path.basename(path.name) + ".d"
>> for location in locations:
>> - files = (root / location / "system" / dirname).glob("*.conf")
>> + files = (root / location / unit_type / dirname).glob("*.conf")
>> if instance_unit_name:
>> inst_dirname = instance_unit_name + ".d"
>> - files = chain(files, (root / location / "system" / inst_dirname).glob("*.conf"))
>> + files = chain(files, (root / location / unit_type / inst_dirname).glob("*.conf"))
>> for path2 in sorted(files):
>> self._parse(root, path2)
>>
>> @@ -182,21 +182,22 @@ class SystemdUnitNotFoundError(Exception):
>>
>>
>> class SystemdUnit():
>> - def __init__(self, root, unit):
>> + def __init__(self, root, unit, unit_type):
>> self.root = root
>> self.unit = unit
>> + self.unit_type = unit_type
>> self.config = None
>>
>> def _path_for_unit(self, unit):
>> for location in locations:
>> - path = self.root / location / "system" / unit
>> + path = self.root / location / self.unit_type / unit
>> if path.exists() or path.is_symlink():
>> return path
>>
>> raise SystemdUnitNotFoundError(self.root, unit)
>>
>> def _process_deps(self, config, service, location, prop, dirstem, instance):
>> - systemdir = self.root / SYSCONFDIR / "systemd" / "system"
>> + systemdir = self.root / SYSCONFDIR / "systemd" / self.unit_type
>>
>> target = ROOT / location.relative_to(self.root)
>> try:
>> @@ -229,7 +230,7 @@ class SystemdUnit():
>> # ignore aliases
>> return
>>
>> - config = SystemdFile(self.root, path, instance_unit_name)
>> + config = SystemdFile(self.root, path, instance_unit_name, self.unit_type)
>> if instance == "":
>> try:
>> default_instance = config.get('Install', 'DefaultInstance')[0]
>> @@ -250,14 +251,14 @@ class SystemdUnit():
>> try:
>> units_enabled.append(unit)
>> if also not in units_enabled:
>> - SystemdUnit(self.root, also).enable(units_enabled)
>> + SystemdUnit(self.root, also, self.unit_type).enable(units_enabled)
>> except SystemdUnitNotFoundError as e:
>> sys.exit("Error: Systemctl also enable issue with %s (%s)" % (service, e.unit))
>>
>> except KeyError:
>> pass
>>
>> - systemdir = self.root / SYSCONFDIR / "systemd" / "system"
>> + systemdir = self.root / SYSCONFDIR / "systemd" / self.unit_type
>> target = ROOT / path.relative_to(self.root)
>> try:
>> for dest in config.get('Install', 'Alias'):
>> @@ -268,15 +269,15 @@ class SystemdUnit():
>> pass
>>
>> def mask(self):
>> - systemdir = self.root / SYSCONFDIR / "systemd" / "system"
>> + systemdir = self.root / SYSCONFDIR / "systemd" / self.unit_type
>> add_link(systemdir / self.unit, "/dev/null")
>>
>>
>> -def collect_services(root):
>> +def collect_services(root, unit_type):
>> """Collect list of service files"""
>> services = set()
>> for location in locations:
>> - paths = (root / location / "system").glob("*")
>> + paths = (root / location / unit_type).glob("*")
>> for path in paths:
>> if path.is_dir():
>> continue
>> @@ -285,16 +286,16 @@ def collect_services(root):
>> return services
>>
>>
>> -def preset_all(root):
>> - presets = Presets('system-preset', root)
>> - services = collect_services(root)
>> +def preset_all(root, unit_type):
>> + presets = Presets('{}-preset'.format(unit_type), root)
>> + services = collect_services(root, unit_type)
>>
>> for service in services:
>> state = presets.state(service)
>>
>> if state == "enable" or state is None:
>> try:
>> - SystemdUnit(root, service).enable()
>> + SystemdUnit(root, service, unit_type).enable()
>> except SystemdUnitNotFoundError:
>> sys.exit("Error: Systemctl preset_all issue in %s" % service)
>>
>> @@ -320,6 +321,7 @@ def main():
>> parser.add_argument('--preset-mode',
>> choices=['full', 'enable-only', 'disable-only'],
>> default='full')
>> + parser.add_argument('--global', dest="glob", action="store_true", default=False)
>>
> I guess `glob` because `global` is a keyword? But yuck... makes me
> think of https://docs.python.org/3/library/glob.html
Yes, that's the reason. Would using `global_` be okay? I choose
suffixing instead of prefixing as underscore prefix has special meaning
for private fields in Python so I guess that also wouldn't be best fit.
>
>> args = parser.parse_args()
>>
>> @@ -336,16 +338,18 @@ def main():
>> parser.print_help()
>> return 0
>>
>> + unit_type = "user" if args.glob else "system"
>> +
>> if command == "mask":
>> for service in args.service:
>> try:
>> - SystemdUnit(root, service).mask()
>> + SystemdUnit(root, service, unit_type).mask()
>> except SystemdUnitNotFoundError as e:
>> sys.exit("Error: Systemctl main mask issue in %s (%s)" % (service, e.unit))
>> elif command == "enable":
>> for service in args.service:
>> try:
>> - SystemdUnit(root, service).enable()
>> + SystemdUnit(root, service, unit_type).enable()
>> except SystemdUnitNotFoundError as e:
>> sys.exit("Error: Systemctl main enable issue in %s (%s)" % (service, e.unit))
>> elif command == "preset-all":
>> @@ -353,7 +357,7 @@ def main():
>> sys.exit("Too many arguments.")
>> if args.preset_mode != "enable-only":
>> sys.exit("Only enable-only is supported as preset-mode.")
>> - preset_all(root)
>> + preset_all(root, unit_type)
>> else:
>> raise RuntimeError()
>>
>> --
>> 2.47.0
>>
>>
>>
>>
>
> --
> Alex Kiernan
next prev parent reply other threads:[~2025-01-13 21:21 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-12 14:31 [PATCH 0/3] Systemd user presets support arturkow2000
2025-01-12 14:31 ` [PATCH 1/3] systemd-systemctl: add support for --global flag Artur Kowalski
2025-01-12 15:34 ` [OE-core] " Alex Kiernan
2025-01-13 21:18 ` Artur Kowalski [this message]
2025-01-15 14:04 ` Alex Kiernan
2025-01-12 14:31 ` [PATCH 2/3] systemd.bbclass: add support for user presets Artur Kowalski
2025-01-13 10:55 ` [OE-core] " Alexander Kanavin
2025-01-12 14:31 ` [PATCH 3/3] image.bbclass: enable systemd user services Artur Kowalski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=73914221-eb80-433e-a37a-37cf046014d5@gmail.com \
--to=arturkow2000@gmail.com \
--cc=alex.kiernan@gmail.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox