2024-01-29 16:14:39 +00:00
|
|
|
# Get the directory for systemd system unit files
|
2024-01-15 22:41:59 +00:00
|
|
|
systemd_system_unit_dir = systemd.get_variable(pkgconfig : 'systemdsystemunitdir')
|
|
|
|
|
2024-01-29 16:14:39 +00:00
|
|
|
# Install the 'scx.service' file to the systemd system unit directory
|
|
|
|
install_data('scx.service', install_dir: systemd_system_unit_dir)
|
2024-01-17 23:03:07 +00:00
|
|
|
|
2024-01-29 16:14:39 +00:00
|
|
|
# Install the 'journald@sched-ext.conf' file to the '/etc/systemd' directory
|
|
|
|
install_data('journald@sched-ext.conf', install_dir: '/etc/systemd')
|
2024-01-17 23:03:07 +00:00
|
|
|
|
2024-01-29 16:14:39 +00:00
|
|
|
# Install the 'scx' file to the '/etc/default' directory
|
|
|
|
install_data('scx', install_dir: '/etc/default')
|