package.py 207 B

12345678910111213
  1. #!/usr/bin/python
  2. import os
  3. def postInstall(fromVersion, fromRelease, toVersion, toRelease):
  4. os.system("refind-install")
  5. os.system("rm -rf /boot/efi/EFI/boot")
  6. def preRemove():
  7. pass