diff options
| author | sickcodes <[email protected]> | 2021-02-26 06:42:57 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2021-02-26 06:42:57 +0000 |
| commit | 258f6b455d14aeb449260b668a9d16478a48ac5c (patch) | |
| tree | f6d3793c6562527ad781acf929d38a8216f7c9f7 /custom | |
| parent | NOPICKER now does: `sed -i '/^.*InstallMedia.*/d' Launch.sh` (diff) | |
| download | docker-osx-258f6b455d14aeb449260b668a9d16478a48ac5c.tar.xz docker-osx-258f6b455d14aeb449260b668a9d16478a48ac5c.zip | |
Fix /env permissions for persistence after GENERATE_UNIQUE. Fix the following warning by chowning /dev/kvm earlier "libguestfs: warning: current user is not a member of the KVM group (group ID 108). This user cannot access /dev/kvm, so libguestfs may run very slowly. It is recommended that you 'chmod 0666 /dev/kvm' or add the current user to the KVM group (you might need to log out and log in again)."
Diffstat (limited to 'custom')
| -rwxr-xr-x | custom/generate-unique-machine-values.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/generate-unique-machine-values.sh b/custom/generate-unique-machine-values.sh index 18bdc5f..6692e29 100755 --- a/custom/generate-unique-machine-values.sh +++ b/custom/generate-unique-machine-values.sh @@ -259,7 +259,7 @@ EOF [[ -e "${TSV_SERIAL_SETS_FILE}" ]] && \ - cat <(printf "DEVICE_MODEL\tSERIAL\BOARD_SERIAL\tUUID\tMAC_ADDRESS\n") "${TSV_SERIAL_SETS_FILE}" + cat <(printf "DEVICE_MODEL\tSERIAL\tBOARD_SERIAL\tUUID\tMAC_ADDRESS\n") "${TSV_SERIAL_SETS_FILE}" } |