Merge pull request #216 from sirlucjan/systemd-reorder

systemd: Move services to separate directory
This commit is contained in:
Tejun Heo 2024-04-04 08:51:36 -10:00 committed by GitHub
commit 939ffdf0f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ subdir('scheds')
systemd = dependency('systemd', required: get_option('systemd'))
if systemd.found()
subdir('services')
subdir('services/systemd')
endif
openrc = dependency('openrc', required: get_option('openrc'))

View File

@ -8,4 +8,4 @@ install_data('scx.service', install_dir: systemd_system_unit_dir)
install_data('journald@sched-ext.conf', install_dir: '/etc/systemd')
# Install the 'scx' file to the '/etc/default' directory
install_data('scx', install_dir: '/etc/default')
install_data('../scx', install_dir: '/etc/default')