example for apt-proxy added to dfs-cbox.conf
hints for no-login added to init-scripts version file added to cryptobox configuration template (for config partition)master
parent
fcd86832f1
commit
7eaa3c7b70
@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# give some hints for users, who are sitting in front of the cryptobox and are mistakenly
|
||||
# waiting for a login prompt
|
||||
#
|
||||
|
||||
case "$1" in
|
||||
start )
|
||||
echo
|
||||
echo "Hints for usage:
|
||||
echo " * you can not login here :)"
|
||||
echo " * point a webbrowser on another computer to 'http://$(/usr/lib/cryptobox/cb-manage.sh get_current_ip)'"
|
||||
echo " * configure your box via your webbrowser"
|
||||
echo
|
||||
;;
|
||||
stop )
|
||||
;;
|
||||
restart )
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
* )
|
||||
echo "Syntax: $0 { start | stop | restart }"
|
||||
;;
|
||||
esac
|
||||
|
@ -0,0 +1 @@
|
||||
../init.d/cb-hints.sh
|
@ -0,0 +1 @@
|
||||
0.3
|
Loading…
Reference in New Issue