#!/bin/sh

systemctl stop systemd-binfmt.service

if [ -f /etc/binfmt.d/i386.conf ];then
	rm -rf /etc/binfmt.d/i386.conf
fi

if [ -f /etc/binfmt.d/x86_64.conf ];then
	rm -rf /etc/binfmt.d/x86_64.conf
fi

if [ -f /etc/sysctl.d/mmap_min_addr.conf ];then
	rm -rf /etc/sysctl.d/mmap_min_addr.conf
fi

#rm -rf /etc/binfmt.d/i386.conf
#rm -rf /etc/binfmt.d/x86_64.conf
#rm -rf /etc/sysctl.d/mmap_min_addr.conf
