8 lines
109 B
MySQL
8 lines
109 B
MySQL
|
-- Returns a list of systemd units
|
||
|
--
|
||
|
-- tags: postmortem
|
||
|
-- platform: linux
|
||
|
SELECT
|
||
|
*
|
||
|
FROM
|
||
|
systemd_units;
|