#5 Make the /proc and /sys %ghost
Merged 3 years ago by landgraf. Opened 3 years ago by praiskup.
rpms/ praiskup/filesystem proc-sys-ghost  into  master

file modified
+12 -4
@@ -1,7 +1,7 @@ 

  Summary: The basic directory layout for a Linux system

  Name: filesystem

  Version: 3.14

- Release: 3%{?dist}

+ Release: 4%{?dist}

  License: Public Domain

  URL: https://pagure.io/filesystem

  Group: System Environment/Base
@@ -50,7 +50,7 @@ 

  

  mkdir -p afs boot dev \

          etc/{X11/{applnk,fontpath.d,xinit/{xinitrc,xinput}.d},xdg/autostart,opt,pm/{config.d,power.d,sleep.d},skel,sysconfig,pki,bash_completion.d,rwtab.d,statetab.d} \

-         home media mnt opt proc root run srv sys tmp \

+         home media mnt opt root run srv tmp \

          usr/{bin,games,include,%{_lib}/{bpf,games,X11,pm-utils/{module.d,power.d,sleep.d}},lib/{debug/{.dwz,usr},games,locale,modules,sysimage},libexec,local/{bin,etc,games,lib,%{_lib}/bpf,sbin,src,share/{applications,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x},info},libexec,include,},sbin,share/{aclocal,appdata,applications,augeas/lenses,backgrounds,bash-completion{,/completions,/helpers},desktop-directories,dict,doc,empty,games,gnome,help,icons,idl,info,licenses,man/man{1,2,3,4,5,6,7,8,9,n,1x,2x,3x,4x,5x,6x,7x,8x,9x,0p,1p,3p},metainfo,mime-info,misc,omf,pixmaps,sounds,themes,xsessions,X11,wayland-sessions},src,src/kernels,src/debug} \

          var/{adm,empty,ftp,lib/{games,misc,rpm-state},local,log,nis,preserve,spool/{mail,lpd},tmp,db,cache/bpf,opt,games,yp}

  
@@ -158,6 +158,10 @@ 

  posix.symlink("usr/sbin", "/usr/lib/debug/sbin")

  posix.symlink("usr/%{_lib}", "/%{_lib}")

  posix.mkdir("/run")

+ posix.mkdir("/proc")

+ posix.mkdir("/sys")

+ posix.chmod("/proc", 0555)

+ posix.chmod("/sys", 0555)

  st = posix.stat("/media")

  if st and st.type == "link" then

    os.remove("/media")
@@ -213,12 +217,12 @@ 

  /media

  %dir /mnt

  %dir /opt

- %attr(555,root,root) /proc

+ %ghost %attr(555,root,root) /proc

  %attr(550,root,root) /root

  /run

  /sbin

  /srv

- %attr(555,root,root) /sys

+ %ghost %attr(555,root,root) /sys

  %attr(1777,root,root) /tmp

  %dir /usr

  %attr(555,root,root) /usr/bin
@@ -309,6 +313,10 @@ 

  /var/yp

  

  %changelog

+ * Fri Aug 07 2020 Pavel Raiskup <praiskup@redhat.com> - 3.14-4

+ - /proc and /sys made %%ghost to allow filesystem package updates in rootless

+   container environments (rhbz#1548403)

+ 

  * Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.14-3

  - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild

  

rebased onto 92aacb5

3 years ago

Hi Pavel,

What's the reasoning behind this change?

See the commit message & rhbz#1595818

1595818 has nothing to do with this PR. Can you please fix bug id in the commit message as well?

rebased onto bceee1a

3 years ago

Fixed, sorry ... I've mixed copr build ID with the bugzilla ID.

Pull-Request has been merged by landgraf

3 years ago