This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ensures all pools are cleanly exported before starting | |
| zpool export -a | |
| # Get the list of pools that are not imported. | |
| zpool import | |
| # Mount the pool <poolname> to /mnt, may need to add -f argument | |
| zpool import -N -R /mnt <poolname> | |
| # Optional, if encrypted |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Trigger] | |
| Operation = Install | |
| Operation = Upgrade | |
| Type = Path | |
| Target = etc/makepkg.conf | |
| Target = usr/share/makepkg/buildenv/lto.sh | |
| Target = usr/share/makepkg/executable/strip.sh | |
| [Action] | |
| Description = Modifying the Makepkg configuration... |