forked from pool/selinux-policy
6fa6803f18
- Update to version 20200910. Refreshed * fix_authlogin.patch * fix_nagios.patch * fix_systemd.patch * fix_usermanage.patch - Delete suse_specific.patch, moved content into fix_selinuxutil.patch - Cleanup of booleans-* presets * Enabled user_rw_noexattrfile unconfined_chrome_sandbox_transition unconfined_mozilla_plugin_transition for the minimal policy * Disabled xserver_object_manager for the MLS policy * Disabled openvpn_enable_homedirs privoxy_connect_any selinuxuser_direct_dri_enabled selinuxuser_ping (aka user_ping) squid_connect_any telepathy_tcp_connect_generic_network_ports for the targeted policy Change your local config if you need them - Build HTML version of manpages for the -devel package OBS-URL: https://build.opensuse.org/request/show/833509 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=83
26 lines
830 B
Bash
26 lines
830 B
Bash
#!/bin/sh
|
|
|
|
date=$(date '+%Y%m%d')
|
|
|
|
echo Update to $date
|
|
|
|
rm -rf fedora-policy container-selinux selinux-policy-contrib
|
|
|
|
git clone --depth 1 https://github.com/fedora-selinux/selinux-policy.git
|
|
git clone --depth 1 https://github.com/fedora-selinux/selinux-policy-contrib.git
|
|
git clone --depth 1 https://github.com/containers/container-selinux.git
|
|
|
|
mv selinux-policy fedora-policy
|
|
rm -rf fedora-policy/.git*
|
|
mv selinux-policy-contrib/* fedora-policy/policy/modules/contrib/
|
|
mv container-selinux/container.* fedora-policy/policy/modules/contrib/
|
|
|
|
rm -f fedora-policy.$date.tar*
|
|
tar cf fedora-policy.$date.tar fedora-policy
|
|
bzip2 fedora-policy.$date.tar
|
|
rm -rf fedora-policy container-selinux selinux-policy-contrib
|
|
|
|
sed -i -e "s/^Version:.*/Version: $date/" selinux-policy.spec
|
|
|
|
echo "remove old tar file, then osc addremove"
|