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
| import {assertString} from 'plugins/assert' | |
| type TemplateContext = { | |
| input: string | |
| customPrompt?: string | |
| } | |
| type Template = (context: TemplateContext) => string | |
| type ServerPredictionPrompt = { |
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
| #!/usr/bin/env bash | |
| # Adapted from https://github.com/zfsonlinux/zfs/wiki/Ubuntu-18.04-Root-on-ZFS | |
| # Should be executed from a live CD environment | |
| set -e | |
| ## CONFIG VARS | |
| set -x | |
| # Disk drive ids (symlinks in /dev/disk/by-id) | |
| bootdisk='bootdisk-id' | |
| rdisk1='root-disk-id' |