forked from pool/filesystem
Accepting request 832120 from home:kukuk:etc
- Split /var/tmp out of fs-var.conf, new file is fs-var-tmp.conf. Allows to override config to add cleanup options of /var/tmp [bsc#1078466] - Create fs-tmp.conf to cleanup /tmp regular (required with tmpfs) [bsc#1175519] - Fix bug about missing group in tmpfiles.d files - Generic cleanup: - Remove /usr/local/games - /etc/java was moved to javapackages-filesystem long ago - Remove unused languages: en@IPA, it_CH, ja_JP.EUC, ja_JP.SJIS, ja_JP.eucJP, nds_DE - Remove %ghost entries for /tmp, /tmp is now tmpfs and the files are handled by systemd since a long time OBS-URL: https://build.opensuse.org/request/show/832120 OBS-URL: https://build.opensuse.org/package/show/Base:System/filesystem?expand=0&rev=182
This commit is contained in:
parent
9a3ff1faa2
commit
f448812d9f
@ -5,7 +5,6 @@
|
|||||||
0755 root root /etc/X11
|
0755 root root /etc/X11
|
||||||
0755 root root /etc/aliases.d
|
0755 root root /etc/aliases.d
|
||||||
0755 root root /etc/default
|
0755 root root /etc/default
|
||||||
0755 root root /etc/java
|
|
||||||
0755 root root /etc/ld.so.conf.d
|
0755 root root /etc/ld.so.conf.d
|
||||||
0755 root root /etc/logrotate.d
|
0755 root root /etc/logrotate.d
|
||||||
0755 root root /etc/modprobe.d
|
0755 root root /etc/modprobe.d
|
||||||
@ -71,7 +70,6 @@
|
|||||||
0755 root root /usr/lib/udev/rules.d
|
0755 root root /usr/lib/udev/rules.d
|
||||||
0755 root root /usr/local
|
0755 root root /usr/local
|
||||||
0755 root root /usr/local/bin
|
0755 root root /usr/local/bin
|
||||||
0755 root root /usr/local/games
|
|
||||||
0755 root root /usr/local/include
|
0755 root root /usr/local/include
|
||||||
0755 root root /usr/local/lib
|
0755 root root /usr/local/lib
|
||||||
0755 root root /usr/local/libexec
|
0755 root root /usr/local/libexec
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 4 12:14:08 UTC 2020 - Thorsten Kukuk <kukuk@suse.com>
|
||||||
|
|
||||||
|
- Split /var/tmp out of fs-var.conf, new file is fs-var-tmp.conf.
|
||||||
|
Allows to override config to add cleanup options of /var/tmp
|
||||||
|
[bsc#1078466]
|
||||||
|
- Create fs-tmp.conf to cleanup /tmp regular (required with tmpfs)
|
||||||
|
[bsc#1175519]
|
||||||
|
- Fix bug about missing group in tmpfiles.d files
|
||||||
|
- Generic cleanup:
|
||||||
|
- Remove /usr/local/games
|
||||||
|
- /etc/java was moved to javapackages-filesystem long ago
|
||||||
|
- Remove unused languages: en@IPA, it_CH, ja_JP.EUC, ja_JP.SJIS,
|
||||||
|
ja_JP.eucJP, nds_DE
|
||||||
|
- Remove %ghost entries for /tmp, /tmp is now tmpfs and the files
|
||||||
|
are handled by systemd since a long time
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Sep 3 00:47:28 UTC 2020 - Stanislav Brabec <sbrabec@suse.com>
|
Thu Sep 3 00:47:28 UTC 2020 - Stanislav Brabec <sbrabec@suse.com>
|
||||||
|
|
||||||
|
@ -59,8 +59,14 @@ function create_dir () {
|
|||||||
mkdir -m $MODE $RPM_BUILD_ROOT/$NAME
|
mkdir -m $MODE $RPM_BUILD_ROOT/$NAME
|
||||||
echo "$XTRA%%dir %%attr($MODE,$OWNR,$GRUP) $NAME" >> filesystem.list
|
echo "$XTRA%%dir %%attr($MODE,$OWNR,$GRUP) $NAME" >> filesystem.list
|
||||||
case "$NAME" in
|
case "$NAME" in
|
||||||
|
/tmp)
|
||||||
|
echo "q $NAME $MODE $OWNR $GRUP 10d" >> fs-tmp.conf
|
||||||
|
;;
|
||||||
|
/var/tmp)
|
||||||
|
echo "d $NAME $MODE $OWNR $GRUP -" >> fs-var-tmp.conf
|
||||||
|
;;
|
||||||
/var/*)
|
/var/*)
|
||||||
echo "d $NAME $MODE $OWNR -" >> fs-var.conf
|
echo "d $NAME $MODE $OWNR $GRUP -" >> fs-var.conf
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
@ -204,7 +210,9 @@ test -n "$NON_EXISTING_DIR" && {
|
|||||||
echo NON_EXISTING_DIR=$NON_EXISTING_DIR
|
echo NON_EXISTING_DIR=$NON_EXISTING_DIR
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
install -m 0644 fs-tmp.conf $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/fs-tmp.conf
|
||||||
install -m 0644 fs-var.conf $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/fs-var.conf
|
install -m 0644 fs-var.conf $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/fs-var.conf
|
||||||
|
install -m 0644 fs-var-tmp.conf $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/fs-var-tmp.conf
|
||||||
|
|
||||||
%pretrans -p <lua>
|
%pretrans -p <lua>
|
||||||
os.remove ("/usr/include/X11")
|
os.remove ("/usr/include/X11")
|
||||||
@ -231,6 +239,8 @@ if posix.stat("/var/lock.rpmsave.tmpx") then
|
|||||||
end
|
end
|
||||||
|
|
||||||
%files -f filesystem.list
|
%files -f filesystem.list
|
||||||
|
/usr/lib/tmpfiles.d/fs-tmp.conf
|
||||||
/usr/lib/tmpfiles.d/fs-var.conf
|
/usr/lib/tmpfiles.d/fs-var.conf
|
||||||
|
/usr/lib/tmpfiles.d/fs-var-tmp.conf
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,2 +0,0 @@
|
|||||||
1777 root root /tmp/.X11-unix
|
|
||||||
1777 root root /tmp/.ICE-unix
|
|
@ -19,7 +19,6 @@ dz
|
|||||||
el
|
el
|
||||||
el_GR
|
el_GR
|
||||||
en
|
en
|
||||||
en@IPA
|
|
||||||
en@boldquot
|
en@boldquot
|
||||||
en@quot
|
en@quot
|
||||||
en@shaw
|
en@shaw
|
||||||
@ -68,12 +67,8 @@ ia
|
|||||||
id
|
id
|
||||||
is
|
is
|
||||||
it
|
it
|
||||||
it_CH
|
|
||||||
it_IT
|
it_IT
|
||||||
ja
|
ja
|
||||||
ja_JP.EUC
|
|
||||||
ja_JP.SJIS
|
|
||||||
ja_JP.eucJP
|
|
||||||
kk
|
kk
|
||||||
km
|
km
|
||||||
kn
|
kn
|
||||||
@ -87,7 +82,6 @@ mr
|
|||||||
nb
|
nb
|
||||||
nb_NO
|
nb_NO
|
||||||
nds
|
nds
|
||||||
nds_DE
|
|
||||||
ne
|
ne
|
||||||
nl
|
nl
|
||||||
nl_BE
|
nl_BE
|
||||||
|
Loading…
Reference in New Issue
Block a user