28 lines
701 B
Markdown
28 lines
701 B
Markdown
# roadmap
|
|
- [x] virtualenv
|
|
- [x] git repo
|
|
- [x] how to make a daemon?
|
|
- [x] get argparse working
|
|
- [x] implement config file
|
|
- [x] model default system
|
|
- [x] list / add / edit / delete operating systems
|
|
- [ ] os post processing (i.e. checksum and extraction)
|
|
- [ ] flash storage with downloaded os
|
|
- [ ] make cli options working
|
|
- [ ] model -> storage -> bool overwrite_always false
|
|
|
|
# cli
|
|
```
|
|
$ ./quickos -h
|
|
usage: quickos.py [-h] os storage
|
|
|
|
flash linux operating systems on the fly
|
|
|
|
positional arguments:
|
|
os the operating system that should be flashed
|
|
storage the storage where the os shall be flashed
|
|
|
|
optional arguments:
|
|
-h, --help show this help message and exit
|
|
```
|