Compare commits
2 Commits
ec315459e8
...
0829731294
Author | SHA1 | Date | |
---|---|---|---|
0829731294 | |||
d78e537f61 |
@@ -29,9 +29,9 @@ When all is said and done you're goig to want to at least touch these points in
|
||||
* Hostname: We chose a pseudo-randomly generated 8-character string with `pwgen`
|
||||
* Unprivileged user accounts: The OS was installed only with a `root` account
|
||||
* Passwords
|
||||
|
||||
* ZFS: The password for all datasets underneath `zpool` is `password`.
|
||||
* Local `root` account: The local `root` account's password is `password`.
|
||||
* Arch User Repository (AUR) helper: We installed [paru](https://github.com/Morganamilo/paru) as our AUR helper, we installed from GitHub via `makepkg -si`. You may want to replace that by an AUR native installation e.g. by doing `paru paru`.
|
||||
|
||||
# Assumptions
|
||||
|
||||
|
9
setup.sh
9
setup.sh
@@ -1,10 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
declare this_script_remote_repo_raw_url zpool_name zfs_arch_dataset_name
|
||||
this_script_remote_repo_raw_url='https://quico.space/...'
|
||||
declare this_script_url
|
||||
this_script_url="${SCRIPT_URL:?}"
|
||||
|
||||
declare zpool_name zfs_arch_dataset_name
|
||||
zpool_name='zpool'
|
||||
zfs_arch_dataset_name='archlinux'
|
||||
|
||||
echo "${this_script_url}"
|
||||
exit 0
|
||||
|
||||
function set_ntp () {
|
||||
timedatectl set-ntp true
|
||||
}
|
||||
|
Reference in New Issue
Block a user