forked from pool/selinux-policy
72477b3ac5
- Update to version 20210716 - Remove interfaces for container module before building the package (bsc#1188184) - Updated * fix_init.patch * fix_systemd_watch.patch to adapt to upstream changes - Use tabrmd SELinux modules from tpm2.0-abrmd instead of storing here - Update to version 20210419 - Dropped fix_gift.patch, module was removed - Updated wicked.te to removed dropped interface - Refreshed: * fix_cockpit.patch * fix_hadoop.patch * fix_init.patch * fix_logging.patch * fix_logrotate.patch * fix_networkmanager.patch * fix_nscd.patch * fix_rpm.patch * fix_selinuxutil.patch * fix_systemd.patch * fix_systemd_watch.patch * fix_thunderbird.patch * fix_unconfined.patch * fix_unconfineduser.patch * fix_unprivuser.patch OBS-URL: https://build.opensuse.org/request/show/909369 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=113
24 lines
668 B
Bash
24 lines
668 B
Bash
#!/bin/sh
|
|
|
|
date=$(date '+%Y%m%d')
|
|
|
|
echo Update to $date
|
|
|
|
rm -rf fedora-policy container-selinux
|
|
|
|
git clone --depth 1 https://github.com/fedora-selinux/selinux-policy.git
|
|
git clone --depth 1 https://github.com/containers/container-selinux.git
|
|
|
|
mv selinux-policy fedora-policy-$date
|
|
rm -rf fedora-policy-$date/.git*
|
|
mv container-selinux/container.* fedora-policy-$date/policy/modules/services/
|
|
|
|
rm -f fedora-policy?$date.tar*
|
|
tar cf fedora-policy-$date.tar fedora-policy-$date
|
|
bzip2 fedora-policy-$date.tar
|
|
rm -rf fedora-policy-$date container-selinux
|
|
|
|
sed -i -e "s/^Version:.*/Version: $date/" selinux-policy.spec
|
|
|
|
echo "remove old tar file, then osc addremove"
|