]> git.pld-linux.org Git - packages/systemd.git/blob - systemd-seccomp_disable_on_i386.patch
since 240 /var/lib/systemd/timesync needs to be directory instead of symlink
[packages/systemd.git] / systemd-seccomp_disable_on_i386.patch
1 commit e798dcbc24681f9516be4e18dfbe916cf9fa44bf
2 Author: Dave Reisner <dreisner@archlinux.org>
3 Date:   Wed Nov 9 08:00:26 2016 -0500
4
5     disable RestrictAddressFamilies on i686
6     
7     Shit's broke, yo.
8     
9     https://github.com/systemd/systemd/issues/4575
10
11 diff --git a/src/core/execute.c b/src/core/execute.c
12 index 8f06abf81..fb03b1b36 100644
13 --- a/src/core/execute.c
14 +++ b/src/core/execute.c
15 @@ -1329,6 +1329,10 @@ static int apply_address_families(const Unit* u, const ExecContext *c) {
16          Iterator i;
17          int r;
18  
19 +#if defined(__i386__)
20 +        return 0;
21 +#endif
22 +
23          assert(c);
24  
25          if (skip_seccomp_unavailable(u, "RestrictAddressFamilies="))
This page took 0.029848 seconds and 3 git commands to generate.