add: Makefile; docs: README.md; docs: moved dependency comment to README.md
This commit is contained in:
parent
4f0abc503a
commit
4fd0f57777
3 changed files with 31 additions and 1 deletions
4
Makefile
Normal file
4
Makefile
Normal file
|
@ -0,0 +1,4 @@
|
|||
install:
|
||||
cp $PWD/shemum /usr/bin/shemum
|
||||
clean:
|
||||
rm -f /usr/bin/shemum
|
26
README.md
Normal file
26
README.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
# (Sh)ell (Emu)lator (M)anager
|
||||
|
||||
## Dependencies
|
||||
|
||||
* qemu
|
||||
* curl
|
||||
* sh
|
||||
* syslog
|
||||
- logger
|
||||
* make
|
||||
|
||||
## Installation
|
||||
|
||||
To install shemum:
|
||||
```sh
|
||||
make install
|
||||
```
|
||||
|
||||
## Deinstallation
|
||||
|
||||
To remove shemum:
|
||||
|
||||
```sh
|
||||
make clean
|
||||
```
|
||||
|
2
shemum
2
shemum
|
@ -13,7 +13,7 @@
|
|||
# Debug mode
|
||||
# To enable debug mode remove the comment.
|
||||
# Default: ON
|
||||
exec 1> >(logger -s -t $(basename $0)) 2>&1
|
||||
#:exec 1> >(logger -s -t $(basename $0)) 2>&1
|
||||
|
||||
# Virtual machine settings
|
||||
RAM="512M"
|
||||
|
|
Loading…
Reference in a new issue