forked from pool/selinux-policy
8c9c1d2173
- Update to version 20210223 - Change name of tar file to a more common schema to allow parallel installation of several source versions - Adjust fix_init.patch OBS-URL: https://build.opensuse.org/request/show/874817 OBS-URL: https://build.opensuse.org/package/show/security:SELinux/selinux-policy?expand=0&rev=94
24 lines
667 B
Bash
24 lines
667 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/contrib/
|
|
|
|
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"
|