raspbian stable?

pull/4/head
Alec Muffett 2017-02-04 16:36:17 +00:00
rodzic a515c121e4
commit a66d0fc698
5 zmienionych plików z 12 dodań i 2 usunięć

2
.gitignore vendored
Wyświetl plik

@ -6,5 +6,3 @@
*.pem
*~
projects.d
opt.d/tor-*
opt.d/nginx-*

Wyświetl plik

@ -75,6 +75,8 @@ Intuitively obvious to the most casual observer:
* `eotk harvest projectname ...` # or: `-a` for all
* *synonyms:* `onions`
* print list of onions used by projects
* `eotk ps`
* do a stupid grep for possibly orphaned processes
# Installation: OSX

4
eotk
Wyświetl plik

@ -106,6 +106,10 @@ case "$cmd" in
Action maps "$@"
;;
ps)
ps auxww | grep /eotk/
;;
delete) # project, or "-a"
echo tbd
;;

Wyświetl plik

@ -36,4 +36,7 @@ done
make || exit 1
make install || exit 1
cd $here || exit 1
ln -s sbin/nginx || exit 1
exit 0

Wyświetl plik

@ -18,4 +18,7 @@ cd $dir || exit 1
make || exit 1
make install || exit 1
cd $here || exit 1
ln -s bin/tor || exit 1
exit 0