forked from pool/filesystem
Accepting request 868428 from Base:System
OBS-URL: https://build.opensuse.org/request/show/868428 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/filesystem?expand=0&rev=153
This commit is contained in:
commit
1ced364e7e
@ -47,6 +47,7 @@
|
||||
0755 root root /usr/etc/skel
|
||||
0755 root root /usr/etc/skel/bin
|
||||
0755 root root /usr/etc/skel/.fonts
|
||||
0700 root root /usr/etc/skel/.cache
|
||||
0700 root root /usr/etc/skel/.config
|
||||
0700 root root /usr/etc/skel/.local
|
||||
0755 root root /usr/etc/xdg
|
||||
|
@ -1,8 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 1 14:23:11 CET 2021 - ro@suse.de
|
||||
|
||||
- add /usr/etc/skel/.cache with perm 0700 (boo#1181011)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 29 13:29:53 UTC 2021 - Ludwig Nussel <lnussel@suse.de>
|
||||
|
||||
- Set correct permissions when creating /proc and /sys
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 16 14:22:50 UTC 2020 - Ludwig Nussel <lnussel@suse.de>
|
||||
|
||||
- /proc and /sys should be %ghost to allow filesystem package updates in
|
||||
rootless container environments (rh#1548403)
|
||||
rootless container environments (rh#1548403) (boo#1146705)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 10 12:41:34 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package filesystem
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2021 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -238,7 +238,9 @@ if posix.stat("/var/lock.rpmsave.tmpx") then
|
||||
os.remove("/var/lock.rpmsave.tmpx")
|
||||
end
|
||||
posix.mkdir("/proc")
|
||||
posix.chmod("/proc", 0555)
|
||||
posix.mkdir("/sys")
|
||||
posix.chmod("/sys", 0555)
|
||||
|
||||
%files -f filesystem.list
|
||||
/usr/lib/tmpfiles.d/fs-tmp.conf
|
||||
|
Loading…
Reference in New Issue
Block a user