From b2abb4cfd681b06d762eaea4c2551642f91c2047 Mon Sep 17 00:00:00 2001 From: FollieHiyuki Date: Sat, 3 Sep 2022 17:30:52 +0700 Subject: [PATCH] README: move TODO section out --- README.md | 8 -------- TODO.md | 24 ++++++++++++++++++++++++ ansible.cfg | 2 +- hosts => inventory | 0 4 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 TODO.md rename hosts => inventory (100%) diff --git a/README.md b/README.md index dd7750f..63f9cc5 100644 --- a/README.md +++ b/README.md @@ -61,14 +61,6 @@ $ sudo ansible-playbook -v setup.yml - The playbook is intended to be run as **root**. It is separated from [dotfiles-ansible](/FollieHiyuki/dotfiles-ansible), which should only be run as a normal user. -## ✅ TODO - -- [ ] ZFS on root -- [ ] EFI secure boot -- [ ] /etc/security/access.conf (maybe?) -- [ ] snapper / btrbk (rootfs=btrfs) -- [ ] auditd - ## 📄 License MIT diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..c03f308 --- /dev/null +++ b/TODO.md @@ -0,0 +1,24 @@ +# TODO + +Stuff that are planned to be changed. + +## Configuration + +- [ ] ZFS on root +- [ ] EFI secure boot (also sign fwupd efi binary) +- [ ] /etc/security/access.conf (maybe?) +- [ ] snapper / btrbk (rootfs=btrfs) +- [ ] auditd +- [ ] booster +- [ ] Refactor grub role (to support other bootloader options) +- [ ] refind / efistub / zfsbootmenu +- [ ] Other options than udhcp (connman / networkmanager) + +## Cosmetic + +- [ ] Vagrantfiles --> Packer + Terraform (zfs + btrfs VMs) +- [ ] Self-built kernels (e.g. RT kernels) + +## Just in case I forget + +- [ ] nftables with rootful podman () diff --git a/ansible.cfg b/ansible.cfg index 91f3047..9d524de 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,5 +1,5 @@ [defaults] -inventory = ./hosts +inventory = ./inventory gathering = explicit display_skipped_hosts = False host_key_checking = False diff --git a/hosts b/inventory similarity index 100% rename from hosts rename to inventory