Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eos-user-preset: Remove user presets to disable pipewire service #365

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions 50-eos-user.preset

This file was deleted.

5 changes: 0 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ AM_DISTCHECK_CONFIGURE_FLAGS = \
--with-systemduserunitdir='$${prefix}/lib/systemd/user' \
--with-systemdgeneratordir='$${prefix}/lib/systemd/system-generators' \
--with-systemdpresetdir='$${prefix}/lib/systemd/system-preset' \
--with-systemduserpresetdir='$${prefix}/lib/systemd/user-preset' \
--with-udevdir='$${prefix}/lib/udev' \
--with-modprobedir='$${prefix}/lib/modprobe.d' \
--with-dbussystemconfigdir='$${prefix}/share/dbus-1/system.d' \
Expand Down Expand Up @@ -49,10 +48,6 @@ dist_systemdpreset_DATA = \
50-eos.preset \
$(NULL)

dist_systemduserpreset_DATA = \
50-eos-user.preset \
$(NULL)

# Network Manager dispatcher script for the firewall - scripts which
# are a symlink to no-wait.d will be run without blocking/ordering.
# install the script here and make the symlink in install-data-hook
Expand Down
10 changes: 0 additions & 10 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ m4_define([no_systemdsystemgeneratordir_error],
m4_define([no_systemdsystempresetdir_error],
[m4_normalize([Could not get systemdsystempresetdir setting from]
[systemd pkg-config file])])
m4_define([no_systemduserpresetdir_error],
[m4_normalize([Could not get systemduserpresetdir setting from]
[systemd pkg-config file])])
m4_define([no_udev_error],
[m4_normalize([Could not get udevdir setting from udev]
[pkg-config file])])
Expand Down Expand Up @@ -60,13 +57,6 @@ AC_ARG_WITH([systemdpresetdir],
[PKG_CHECK_VAR([systemdpresetdir], [systemd],
[systemdsystempresetdir], [],
[AC_MSG_ERROR(no_systemdsystempresetdir_error)])])
AC_ARG_WITH([systemduserpresetdir],
[AS_HELP_STRING([--with-systemduserpresetdir],
[Path to the system directory for systemd user presets])],
[systemduserpresetdir="$withval"],
[PKG_CHECK_VAR([systemduserpresetdir], [systemd],
[systemduserpresetdir], [],
[AC_MSG_ERROR(no_systemduserpresetdir_error)])])
AC_ARG_WITH([udevdir],
[AS_HELP_STRING([--with-udevdir],
[Path to the system udev directory])],
Expand Down