chiark / gitweb /
elogind.git
7 years agoutil: mark unquote() static, so that new code doesn't use this anymore
Lennart Poettering [Fri, 10 Apr 2015 10:16:54 +0000 (12:16 +0200)]
util: mark unquote() static, so that new code doesn't use this anymore

7 years agoutil: fix unicode decoding in unquote_first_word()
Lennart Poettering [Fri, 10 Apr 2015 09:56:04 +0000 (11:56 +0200)]
util: fix unicode decoding in unquote_first_word()

7 years agoutil: when unescaping C escape sequences support C++11 \u and \U unicode literals
Lennart Poettering [Fri, 10 Apr 2015 09:27:47 +0000 (11:27 +0200)]
util: when unescaping C escape sequences support C++11 \u and \U unicode literals

We simply recode them in utf8.

7 years agohashmap: return NULL from destructor
David Herrmann [Fri, 10 Apr 2015 09:15:12 +0000 (11:15 +0200)]
hashmap: return NULL from destructor

We _always_ return NULL from destructors to allow direct assignments to
the variable holding the object. Especially on hashmaps, which treat NULL
as empty hashmap, this is pretty neat.

7 years agoutil: fix a typo in comment
Thomas Hindoe Paaboel Andersen [Thu, 9 Apr 2015 21:57:35 +0000 (23:57 +0200)]
util: fix a typo in comment

7 years agoutil: add shell_maybe_quote() call for preparing a string for shell cmdline inclusion
Lennart Poettering [Thu, 9 Apr 2015 16:32:21 +0000 (18:32 +0200)]
util: add shell_maybe_quote() call for preparing a string for shell cmdline inclusion

If necessary the passed string is enclosed in "", and all special
characters escapes.

This also ports over usage in bus-util.c and job.c to use this, instead
of a incorrect local implementation that forgets to properly escape.

7 years agologind: drop unused argument from method_do_shutdown_or_sleep()
Daniel Mack [Thu, 9 Apr 2015 14:44:51 +0000 (16:44 +0200)]
logind: drop unused argument from method_do_shutdown_or_sleep()

7 years agoutil: cunescape - fix memleak in error path
Ronny Chevalier [Thu, 9 Apr 2015 09:00:35 +0000 (11:00 +0200)]
util: cunescape - fix memleak in error path

7 years agoutil: merge change_attr_fd() and chattr_fd()
Lennart Poettering [Wed, 8 Apr 2015 18:47:35 +0000 (20:47 +0200)]
util: merge change_attr_fd() and chattr_fd()

7 years agomissing.h: Define IFA_F_NOPREFIXROUTE
Alexander Sverdlin [Wed, 8 Apr 2015 10:59:40 +0000 (12:59 +0200)]
missing.h: Define IFA_F_NOPREFIXROUTE

Fixes second systemd compilation problem against Linux 3.12 uapi
headers.

IFA_F_NOPREFIXROUTE is a usual #define appeared in Linux 3.14, so
AC_CHECK_DECLS is not necessary.

7 years agosd-rtnl: properly size attribute array if IFA_FLAGS was missing
Lennart Poettering [Wed, 8 Apr 2015 10:53:50 +0000 (12:53 +0200)]
sd-rtnl: properly size attribute array if IFA_FLAGS was missing

7 years agobus: simplify bus_message_read_strv_extend()
David Herrmann [Wed, 8 Apr 2015 09:20:10 +0000 (11:20 +0200)]
bus: simplify bus_message_read_strv_extend()

Avoid unbound for(;;) loop and use the established coding-style:
  while ((r = sd_bus_message_read*(...)) > 0) {
  }
  if (r < 0)
          return r;

This is much easier to read and used all over the code base.

7 years agoremove duplicated includes
Ronny Chevalier [Tue, 7 Apr 2015 23:15:32 +0000 (01:15 +0200)]
remove duplicated includes

7 years agopo: update French translation
Sylvain Plantefève [Tue, 7 Apr 2015 22:40:33 +0000 (00:40 +0200)]
po: update French translation

Add strings introduced by 5bdf22430e367799dfa66c724144b624c5479518

7 years agologind: drop "interactive" parameter from SetRebootToFirmwareSetup() bus call
Lennart Poettering [Tue, 7 Apr 2015 19:08:07 +0000 (21:08 +0200)]
logind: drop "interactive" parameter from SetRebootToFirmwareSetup() bus call

Newer dbus versions have an "allow interactive authentication" bit in
the message header, hence it is not necessary to take a boolean for this
explicitly.

7 years agomissing.h: define IFA_FLAGS if it is missing
Lennart Poettering [Tue, 7 Apr 2015 19:07:19 +0000 (21:07 +0200)]
missing.h: define IFA_FLAGS if it is missing

7 years agozsh-completion: update loginctl
Ronny Chevalier [Tue, 7 Apr 2015 17:35:13 +0000 (19:35 +0200)]
zsh-completion: update loginctl

7 years agopath-util: fix more path_is_mount e792e890f fallout
Lennart Poettering [Tue, 7 Apr 2015 14:03:45 +0000 (16:03 +0200)]
path-util: fix more path_is_mount e792e890f fallout

7 years agobus: use free_and_strdup()
David Herrmann [Tue, 7 Apr 2015 13:20:54 +0000 (15:20 +0200)]
bus: use free_and_strdup()

Save some LOCs by replacing strdup()+error-handling+free+assign with
free_and_strdup().

7 years agodevice: fix sysattr newline cutter
David Herrmann [Tue, 7 Apr 2015 11:11:18 +0000 (13:11 +0200)]
device: fix sysattr newline cutter

Right now, we always drop the last character of all values we write to
sysfs. Fix this!

7 years agopolkit: rename bus_verify_polkit() to bus_test_polkit() and make it strictly non...
Lennart Poettering [Mon, 6 Apr 2015 18:25:56 +0000 (20:25 +0200)]
polkit: rename bus_verify_polkit() to bus_test_polkit() and make it strictly non-interactive

Interactive authorization should only happen asynchronously, hence
disallow it in synchronous bus_verify_polkit(), and rename it to
bus_test_polkit(). This way even if the bus message header asks for
interactive authorization, we'll ask for non-interactive authorization
which is actually the desired behaviour if CanSuspend, CanHibernate and
friends, which call this function.

7 years agoutil: rework cunescape(), improve error handling
Lennart Poettering [Mon, 6 Apr 2015 18:11:41 +0000 (20:11 +0200)]
util: rework cunescape(), improve error handling

Change cunescape() to return a normal error code, so that we can
distuingish OOM errors from parse errors.

This also adds a flags parameter to control whether "relaxed" or normal
parsing shall be done. If set no parse failures are generated, and the
only reason why cunescape() can fail is OOM.

7 years agobtrfs: add support for recursive btrfs snapshotting
Lennart Poettering [Mon, 6 Apr 2015 13:26:59 +0000 (15:26 +0200)]
btrfs: add support for recursive btrfs snapshotting

7 years agobtrfs: missing endian conversion fix
Lennart Poettering [Mon, 6 Apr 2015 12:55:45 +0000 (14:55 +0200)]
btrfs: missing endian conversion fix

7 years agobtrfs: make btrfs_subvol_snapshot() parameters a flags field
Lennart Poettering [Mon, 6 Apr 2015 09:47:25 +0000 (11:47 +0200)]
btrfs: make btrfs_subvol_snapshot() parameters a flags field

7 years agobtrfs: support recursively removing btrfs snapshots
Lennart Poettering [Mon, 6 Apr 2015 08:57:17 +0000 (10:57 +0200)]
btrfs: support recursively removing btrfs snapshots

7 years agosd-device: don't use alloca() within loops
Tom Gundersen [Sun, 5 Apr 2015 10:17:29 +0000 (12:17 +0200)]
sd-device: don't use alloca() within loops

 I shall not use alloca() within loops
 I shall not use alloca() within loops
 I shall not use alloca() within loops
 I shall not use alloca() within loops
...

7 years agomachined: drop btrfs subvolumes when removing container images
Lennart Poettering [Sun, 5 Apr 2015 09:28:04 +0000 (11:28 +0200)]
machined: drop btrfs subvolumes when removing container images

7 years agopath-util: don't eat up ENOENT in path_is_mount_point()
Lennart Poettering [Sun, 5 Apr 2015 09:26:58 +0000 (11:26 +0200)]
path-util: don't eat up ENOENT in path_is_mount_point()

There's no reason to eat up ENOENT, it should be OK to simply report the
error back.

7 years agopath-util: make sure fd_is_mount_point() returns true for root directory
Lennart Poettering [Sun, 5 Apr 2015 09:12:16 +0000 (11:12 +0200)]
path-util: make sure fd_is_mount_point() returns true for root directory

7 years agopath-util: if parent can do name_to_handle() but relevant dir not, it's a mount point
Lennart Poettering [Sat, 4 Apr 2015 17:20:56 +0000 (19:20 +0200)]
path-util: if parent can do name_to_handle() but relevant dir not, it's a mount point

7 years agorm-rf: never cross mount points
Lennart Poettering [Sat, 4 Apr 2015 12:42:39 +0000 (14:42 +0200)]
rm-rf: never cross mount points

7 years agoutil: rework rm_rf() logic
Lennart Poettering [Sat, 4 Apr 2015 09:52:57 +0000 (11:52 +0200)]
util: rework rm_rf() logic

- Move to its own file rm-rf.c

- Change parameters into a single flags parameter

- Remove "honour sticky" logic, it's unused these days

7 years agosd-device,udevd: fix spelling /ammend/amend/
Tom Gundersen [Fri, 3 Apr 2015 20:51:09 +0000 (22:51 +0200)]
sd-device,udevd: fix spelling /ammend/amend/

7 years agosd-device: get_properties_{nulstr,strv} - don't recreate the buffer unnecessarily
Tom Gundersen [Fri, 3 Apr 2015 19:05:42 +0000 (21:05 +0200)]
sd-device: get_properties_{nulstr,strv} - don't recreate the buffer unnecessarily

7 years agosd-device: fix deserialization from netlink
Tom Gundersen [Fri, 3 Apr 2015 19:04:48 +0000 (21:04 +0200)]
sd-device: fix deserialization from netlink

Use the standard FOREACH_WORD* macros.

The current code was broken in the devlink case so the last one received
was being dropped, causing https://bugs.freedesktop.org/show_bug.cgi?id=89894

7 years agologind,systemctl: add reboot to EFI firmware support
Jan Janssen [Fri, 3 Apr 2015 16:03:06 +0000 (18:03 +0200)]
logind,systemctl: add reboot to EFI firmware support

7 years agoudev: input_id: tag accelerometers as ID_INPUT_ACCELEROMETER
Hans de Goede [Fri, 3 Apr 2015 10:07:32 +0000 (12:07 +0200)]
udev: input_id: tag accelerometers as ID_INPUT_ACCELEROMETER

input_id already (tries to) tag accelerometers as such, but this only works
for absolute accelerometers. Recent kernels mark accelerometers through an
input prop. Trust that prop and always tag devices with it with
ID_INPUT_ACCELEROMETER.

Note that detection by the prop bit works the same as the existing detection
and will ensure that no other tags get set on the device.

7 years agoSeparate the % sign from the number
Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] [Tue, 31 Mar 2015 05:47:39 +0000 (02:47 -0300)]
Separate the % sign from the number

In spanish the % sign is supposed to be separated from the number [1 and 2 both in spanish] so I separated the %% that draw the percentage sign from the number.

[1] http://www.fundeu.es/recomendacion/el-se-escribe-separado-de-la-cifra-a-la-que-acompana-802/
[2] http://aplica.rae.es/orweb/cgi-bin/v.cgi?i=QGkHLBzKcEgZrQyD

PD: I know that probably this is not the propper place but I don't know where submit the fix or if I do it right

7 years agoudev: input_id: tag pointing sticks as ID_INPUT_POINTINGSTICK
Peter Hutterer [Thu, 26 Mar 2015 04:08:35 +0000 (14:08 +1000)]
udev: input_id: tag pointing sticks as ID_INPUT_POINTINGSTICK

Also referred to as trackpoint, trackstick. These are marked by recent kernels
through an input prop. Forward that prop as udev property so userspace can
easily determine whether there is a pointing stick present.

These devices were previously marked as ID_INPUT_MOUSE, for backwards
compatibility we keep that in place, the new property is an addition.

7 years agoudev: builtin-keyboard: add support for EVDEV_ABS_*
Peter Hutterer [Thu, 19 Mar 2015 04:19:58 +0000 (14:19 +1000)]
udev: builtin-keyboard: add support for EVDEV_ABS_*

Parse properties in the form
EVDEV_ABS_00="<min>:<max>:<res>:<fuzz>:<flat>"

and apply them to the kernel device. Future processes that open that device
will see the updated EV_ABS range.

This is particularly useful for touchpads that don't provide a resolution in
the kernel driver but can be fixed up through hwdb entries (e.g. bcm5974).

All values in the property are optional, e.g. a string of "::45" is valid to
set the resolution to 45.

The order intentionally orders resolution before fuzz and flat despite it
being the last element in the absinfo struct. The use-case for setting
fuzz/flat is almost non-existent, resolution is probably the most common case
we'll need.

To avoid multiple hwdb invocations for the same device, replace the
hwdb "keyboard:" prefix with "evdev:" and drop the separate 60-keyboard.rules
file. The new 60-evdev.rules is called for all event nodes
anyway, we don't need a separate rules file and second callout to the hwdb
builtin.

7 years agobootctl: modernization
Zbigniew Jędrzejewski-Szmek [Wed, 18 Mar 2015 02:29:31 +0000 (22:29 -0400)]
bootctl: modernization

Use strjoina to avoid error handling, and openat to simplify things.

Some fixes on the way:
- ferror does not set errno, so the return value was wrong in some cases
- errors are propagated in more cases
- EFI/systemd was created, but EFI/systemd-boot was deleted
- something is always printed on error
- when checking the version, comparison was done against "systemd-bo" for some reason
- return value was converted from negative to EXIT_SUCCESS/EXIT_FAILURE twice,
  resulting in EXIT_SUCCESS all the time

7 years agojournal: add int↔audit type name mapping
Zbigniew Jędrzejewski-Szmek [Mon, 16 Mar 2015 17:14:18 +0000 (13:14 -0400)]
journal: add int↔audit type name mapping

7 years agonetworkd: Add support for bond option.
Susant Sahani [Mon, 9 Mar 2015 09:58:29 +0000 (15:28 +0530)]
networkd: Add support for bond option.

This patch adds configurational support for bond option.

Test conf:

bond.netdev

 ---
[NetDev]
Name=bond1
Kind=bond

[Bond]
ArpAllTargets=all
PrimaryReselect=better
ArpIntervalSec=10s
ArpIpTargets= 192.168.8.102 192.168.8.101 192.168.8.102
 ---

$cat /proc/net/bonding/bond1
Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)

Bonding Mode: load balancing (round-robin)
MII Status: up
MII Polling Interval (ms): 0
Up Delay (ms): 0
Down Delay (ms): 0
ARP Polling Interval (ms): 10000
ARP IP target/s (n.n.n.n form): 192.168.8.100, 192.168.8.101, 192.168.8.102

7 years agonetworkd vxlan: Add support for enabling UDP checksums
Susant Sahani [Thu, 5 Mar 2015 16:32:47 +0000 (22:02 +0530)]
networkd vxlan: Add support for enabling UDP checksums

Add UDPCheckSum option to enable transmitting UDP checksums when doing
VXLAN/IPv4. Add UDP6ZeroChecksumRx, and UDP6ZeroChecksumTx
options to enable sending zero checksums and receiving zero
checksums in VXLAN/IPv6

[tomegun: rebase manpage due to whitespace changes]

7 years agosd-bus: teach bus_print_property() how to print SD_BUS_TYPE_INT64
Daniel Mack [Fri, 20 Feb 2015 14:16:02 +0000 (15:16 +0100)]
sd-bus: teach bus_print_property() how to print SD_BUS_TYPE_INT64

8 years agoRelease version 219.14.
Andy Wingo [Wed, 16 Mar 2016 21:47:59 +0000 (22:47 +0100)]
Release version 219.14.

8 years agoClear pending action after resume from delayed sleep.
Andy Wingo [Thu, 17 Mar 2016 08:21:53 +0000 (09:21 +0100)]
Clear pending action after resume from delayed sleep.

8 years agoEmit PrepareForSleep when resuming.
Andy Wingo [Wed, 16 Mar 2016 21:47:37 +0000 (22:47 +0100)]
Emit PrepareForSleep when resuming.

8 years agov219.13
Andy Wingo [Sun, 6 Mar 2016 15:03:03 +0000 (16:03 +0100)]
v219.13

8 years agoFixes to user and session saving
Andy Wingo [Sun, 6 Mar 2016 15:56:33 +0000 (16:56 +0100)]
Fixes to user and session saving

* src/login/logind-dbus.c (method_create_session): No need to save
  session here, as session_send_create_reply will do it.
* src/login/logind-session-dbus.c (session_send_create_reply): On the
  other hand we do need to save the user here, so the file marks them as
  being active.

8 years agoClassify processes from sessions into cgroups
Andy Wingo [Sun, 6 Mar 2016 15:02:31 +0000 (16:02 +0100)]
Classify processes from sessions into cgroups

Create a private cgroup tree associated with no controllers, and use it
to map PIDs to sessions.  Since we use our own path structure, remove
internal cgroup-related helpers that interpret the cgroup path structure
to pull out users, slices, and scopes.

8 years agoSet up cgroups when logind starts
Andy Wingo [Wed, 2 Mar 2016 19:50:35 +0000 (20:50 +0100)]
Set up cgroups when logind starts

This code is from systemd.

8 years agoRe-add cgroups agent to the build
Andy Wingo [Wed, 2 Mar 2016 19:44:29 +0000 (20:44 +0100)]
Re-add cgroups agent to the build

The helper is now named logind-cgroups-agent.

8 years agoRevert "Remove src/cgroups-agent"
Andy Wingo [Wed, 2 Mar 2016 19:36:32 +0000 (20:36 +0100)]
Revert "Remove src/cgroups-agent"

This reverts commit 024e2f0da33fa05f4d5aa696e9f715264e9cd41f.

8 years agoFix check for libcap to re-set LIBS; add -lrt for mq_unlink
Andy Wingo [Sun, 6 Mar 2016 11:47:17 +0000 (12:47 +0100)]
Fix check for libcap to re-set LIBS; add -lrt for mq_unlink

8 years agoUpdate README
Andy Wingo [Wed, 2 Sep 2015 10:45:47 +0000 (12:45 +0200)]
Update README

8 years agov219.12 v219.12
Andy Wingo [Tue, 1 Sep 2015 11:15:56 +0000 (13:15 +0200)]
v219.12

8 years agoFix argument order when checking inhibitors
Andy Wingo [Tue, 1 Sep 2015 11:13:49 +0000 (13:13 +0200)]
Fix argument order when checking inhibitors

8 years agoStop sessions on ReleaseSession v219.11
Andy Wingo [Tue, 1 Sep 2015 10:30:17 +0000 (12:30 +0200)]
Stop sessions on ReleaseSession

8 years agoFix the login monitor
Andy Wingo [Tue, 1 Sep 2015 09:54:25 +0000 (11:54 +0200)]
Fix the login monitor

* src/login/logind.c (main): Create /run/systemd/machines, so that the
  login monitor works.
* configure.ac: v219.10.

8 years agov219.9 v219.9
Andy Wingo [Tue, 1 Sep 2015 09:32:07 +0000 (11:32 +0200)]
v219.9

8 years agoPKTTYAGENT make variable
Andy Wingo [Tue, 1 Sep 2015 09:30:38 +0000 (11:30 +0200)]
PKTTYAGENT make variable

* Makefile.am (PKTTYAGENT): Define as a variable so that users can make
  PKTTYAGENT=/whatever to select a specific pkttyagent path.

8 years agov219.8
Andy Wingo [Sat, 29 Aug 2015 10:19:20 +0000 (12:19 +0200)]
v219.8

8 years agoAdd poweroff, suspend etc. loginctl commands
Andy Wingo [Sat, 29 Aug 2015 10:17:50 +0000 (12:17 +0200)]
Add poweroff, suspend etc. loginctl commands

* src/login/loginctl.c: Add poweroff, reboot, suspend, hibernate, and
  hybrid-sleep commands.  Normally these are handled by systemctl but
  since elogind is targeted at the no-systemd use case, we incorporate
  them here.

8 years agoIncorporate sleep.conf into logind.conf
Andy Wingo [Sat, 29 Aug 2015 09:20:59 +0000 (11:20 +0200)]
Incorporate sleep.conf into logind.conf

* src/login/logind-action.c (shutdown_or_sleep, do_sleep): Take modes
  from the manager instead of parsing them ourselves.

* src/login/logind-dbus.c (execute_shutdown_or_sleep): Adapt to
  shutdown_or_sleep prototype change.

* src/login/logind-gperf.gperf: Add config items from sleep.conf.
* src/login/logind.c (manager_new): Wire up defaults for new config
  items.
  (manager_free): Free new config items.
  (manager_parse_config_file): Arrange to parse a single
  elogind/logind.conf file, not grovelling all over the filesystem.
  Take the file from the ELOGIND_CONF_FILE environment variable if
  present.

8 years agov219.7 v219.7
Andy Wingo [Wed, 26 Aug 2015 21:21:55 +0000 (23:21 +0200)]
v219.7

8 years agoAdd --with-libcap option
Andy Wingo [Wed, 26 Aug 2015 21:19:06 +0000 (23:19 +0200)]
Add --with-libcap option

* configure.ac: Add --with-libcap option.
* Makefile.am (libelogind_shared_la_LDFLAGS): Add CAP_LDFLAGS.

8 years agov219.6 v219.6
Andy Wingo [Sun, 23 Aug 2015 13:00:21 +0000 (15:00 +0200)]
v219.6

8 years agoHandle suspend/hibernate/hybrid-suspend/shutdown/reboot directly
Andy Wingo [Sun, 23 Aug 2015 12:54:39 +0000 (14:54 +0200)]
Handle suspend/hibernate/hybrid-suspend/shutdown/reboot directly

* configure.ac: Get paths of halt and reboot.
* Makefile.am (systemsleepdir, systemshutdowndir): New variables.  Look
  in them for hooks to run.

* src/login/logind-action.c: Inline the salient bits from systemd's
  system-sleep.c here.

* src/login/logind-dbus.c (execute_shutdown_or_sleep): Call our own
  shutdown_or_sleep helper instead of invoking a systemd method.

* src/login/logind.h: Declare shutdown_or_sleep.

8 years agoBeginnings of handling suspend/etc within logind
Andy Wingo [Sun, 23 Aug 2015 10:28:10 +0000 (12:28 +0200)]
Beginnings of handling suspend/etc within logind

Since we are catching the keys, we might as well just do
suspend/reboot/etc handling here.

8 years agoRemove unused manager routines
Andy Wingo [Sun, 23 Aug 2015 10:00:33 +0000 (12:00 +0200)]
Remove unused manager routines

Remove routines to call into systemd to manage jobs and units.

8 years agologind.c cleanup
Andy Wingo [Sun, 23 Aug 2015 09:59:34 +0000 (11:59 +0200)]
logind.c cleanup

* src/login/logind.c: Remove unused vcsa dispatch function.  Add
  mkdir_label header.  Don't mkdir /run/systemd; we require that it be
  mounted over ramfs or tmpfs.

8 years agoRemove systemd subscription and user/session units
Andy Wingo [Sun, 23 Aug 2015 09:50:26 +0000 (11:50 +0200)]
Remove systemd subscription and user/session units

This removes attempts by logind to listen to systemd messages over the
bus, and to start and/or manage units associated with sessions and
users.

8 years agoRemove support for auto-spawning VTs
Andy Wingo [Sun, 23 Aug 2015 09:17:14 +0000 (11:17 +0200)]
Remove support for auto-spawning VTs

Auto-spawning VTs requires systemd in practice.  If you're using systemd
you can just use its logind :)

8 years agoActually working with pam v219.5
Andy Wingo [Thu, 20 Aug 2015 08:53:41 +0000 (10:53 +0200)]
Actually working with pam

* src/login/logind-user.c (user_start): Don't start slices and
  systemd-user services.

* src/login/logind-dbus.c (method_create_session): Send a reply directly
  instead of waiting on systemd that isn't there.

* configure.ac: Bump version.

8 years agoDon't try to set up cgroups for new users v219.4
Andy Wingo [Thu, 20 Aug 2015 07:55:37 +0000 (09:55 +0200)]
Don't try to set up cgroups for new users

* src/login/logind-session.c (session_start): Punt on setting up a
  scope.

8 years agoCreate /run/systemd as needed v219.3
Andy Wingo [Thu, 20 Aug 2015 07:21:04 +0000 (09:21 +0200)]
Create /run/systemd as needed

* src/login/logind.c (main): Also create /run/systemd at startup.
* configure.ac: Bump to 219.3.

8 years agoPlay better with non-FHS distros v219.2
Andy Wingo [Wed, 19 Aug 2015 20:27:38 +0000 (22:27 +0200)]
Play better with non-FHS distros

* Makefile.am: Remove rootprefix, rootbindir, and rootlibexecdir.
  udevrulesdir is substed from configure.ac.  Adapt distcheck.

* autogen.sh: Make more normal.
* configure.ac: Add --with-udevrulesdir.  Remove --with-rootprefix.
  Detect bin dir for udev.

8 years agoRemove sd-path interface
Andy Wingo [Wed, 19 Aug 2015 20:05:08 +0000 (22:05 +0200)]
Remove sd-path interface

* src/libelogind/sd-path/sd-path.c:
* src/systemd/sd-path.h: Remove files.  These interfaces are not
  compatible with Guix.
* Makefile.am: Adapt.

8 years agov219.1 v219.1
Andy Wingo [Tue, 18 Aug 2015 09:02:48 +0000 (11:02 +0200)]
v219.1

* configure.ac: Bump version.

8 years agoAdd rules to build and install the public libelogind library
Andy Wingo [Tue, 18 Aug 2015 09:02:16 +0000 (11:02 +0200)]
Add rules to build and install the public libelogind library

* Makefile.am: Actually build and install libelogind.

8 years agoFix distcheck v219.0
Andy Wingo [Tue, 18 Aug 2015 07:20:28 +0000 (09:20 +0200)]
Fix distcheck

8 years agoFix logind startup
Andy Wingo [Tue, 18 Aug 2015 06:42:11 +0000 (08:42 +0200)]
Fix logind startup

* src/login/logind.c (manager_connect_bus): Warn instead of error if we
  can't subscribe to updates from systemd.  Perhaps we should remove
  this entirely.

8 years agoconfigure.ac actually defines OUR_CFLAGS
Andy Wingo [Sun, 16 Aug 2015 09:46:50 +0000 (11:46 +0200)]
configure.ac actually defines OUR_CFLAGS

* configure.ac (OUR_CFLAGS): Actually define.  This was preventing test
  executables from linking as they weren't getting the -fPIE flag.

8 years agoRemove sd_is_mq
Andy Wingo [Sun, 16 Aug 2015 09:20:51 +0000 (11:20 +0200)]
Remove sd_is_mq

* src/systemd/sd-daemon.h:
* src/libelogind/sd-daemon/sd-daemon.c (sd_is_mq): Remove unused
  function that depended on librt.  Ultimately we should remove this
  header at some point.

8 years agoRename systemd-logind to logind.
Ricardo Wurmus [Sun, 3 May 2015 20:26:52 +0000 (22:26 +0200)]
Rename systemd-logind to logind.

8 years agoRename PAM configuration file.
Ricardo Wurmus [Sat, 2 May 2015 06:54:52 +0000 (08:54 +0200)]
Rename PAM configuration file.

8 years agoRemove reference to non-existing file.
Ricardo Wurmus [Sat, 2 May 2015 06:53:21 +0000 (08:53 +0200)]
Remove reference to non-existing file.

8 years agoDo not install aliases for units.
Ricardo Wurmus [Sat, 2 May 2015 06:51:39 +0000 (08:51 +0200)]
Do not install aliases for units.

8 years agoIgnore generated libelogind files.
Ricardo Wurmus [Sun, 26 Apr 2015 13:04:56 +0000 (15:04 +0200)]
Ignore generated libelogind files.

8 years agorename libsystemd*.pc.in to libelogind*.pc.in
Ricardo Wurmus [Sun, 26 Apr 2015 13:03:53 +0000 (15:03 +0200)]
rename libsystemd*.pc.in to libelogind*.pc.in

8 years agorestore libsystemd-pkgconfig.xml as libelogind-pkgconfig.xml
Ricardo Wurmus [Sun, 26 Apr 2015 13:01:31 +0000 (15:01 +0200)]
restore libsystemd-pkgconfig.xml as libelogind-pkgconfig.xml

8 years agoReplace systemd.version with elogind.version.
Ricardo Wurmus [Fri, 24 Apr 2015 20:23:06 +0000 (22:23 +0200)]
Replace systemd.version with elogind.version.

8 years agoRestore shared XML files.
Ricardo Wurmus [Fri, 24 Apr 2015 10:36:12 +0000 (12:36 +0200)]
Restore shared XML files.

* man/less-variables.xml,
  man/standard-conf.xml,
  man/standard-options.xml,
  man/user-system-options.xml: Restore files from upstream (removed in
  commit d3ad6bf3).

9 years agoDisable -flto
Andy Wingo [Mon, 20 Apr 2015 20:08:33 +0000 (22:08 +0200)]
Disable -flto

With binutils 2.25, the following error occurred:

/tmp/ccx3cAlA.ltrans10.ltrans.o: In function `bus_error_name_to_errno.5271':
/home/wingo/src/elogind/src/libelogind/sd-bus/bus-error.c:113: undefined reference to `__stop_BUS_ERROR_MAP'
/home/wingo/src/elogind/src/libelogind/sd-bus/bus-error.c:113: undefined reference to `__start_BUS_ERROR_MAP'
collect2: error: ld returned 1 exit status

9 years agoRemove unused and invalid udev definitions
Andy Wingo [Mon, 20 Apr 2015 19:10:49 +0000 (21:10 +0200)]
Remove unused and invalid udev definitions

These definitions were not valid when compiling against eudev.

9 years agoRemove more extraneous Makefile.am bits
Andy Wingo [Mon, 20 Apr 2015 19:05:18 +0000 (21:05 +0200)]
Remove more extraneous Makefile.am bits

9 years agoRe-add logind man pages from upstream systemd
Andy Wingo [Sun, 19 Apr 2015 15:46:51 +0000 (17:46 +0200)]
Re-add logind man pages from upstream systemd

9 years agoGet rid of some more unused defines and dirs
Andy Wingo [Sun, 19 Apr 2015 15:02:47 +0000 (17:02 +0200)]
Get rid of some more unused defines and dirs