Remove trove user if it exists
This commit is contained in:
parent
e82abb0ec4
commit
7a19f6dfa6
|
@ -54,6 +54,8 @@ Github is paradoxically a centralized, closed and proprietary system which happe
|
|||
At present Github is useful just because of the sheer number of eyeballs and the easy discoverability of projects via search.
|
||||
|
||||
The source code for this project is experimentally independently hosted, and it is expected that in future the main development will shift over to an independent site, maybe with mirrors on Github if it still exists in a viable form.
|
||||
|
||||
Currently many of the repositories used for applications which are not yet packaged for Debian are on Github, and to provide some degree of resilliance against depending too much upon that it's possible to use [[./mirrors.html][mirrors stored on another server]].
|
||||
* Why can't I access my .onion site with a Tor browser?
|
||||
By default the Tor browser has [[https://www.eff.org/HTTPS-everywhere][https everywhere]] enabled and this can clash with onion addresses. Really this is a browser bug, which ought to be fixed. If you notice that "https" has been automatically prepended to your onion address then go to the https everywhere settings and disable it. https isn't needed for ontion sites since onion services already have their own public key encryption (the onion address is the public key).
|
||||
* What is the best hardware to run this system on?
|
||||
|
|
|
@ -2262,6 +2262,9 @@ function mesh_cjdns {
|
|||
}
|
||||
|
||||
function create_mirrors {
|
||||
if [ -d /home/trove ]; then
|
||||
userdel -r trove
|
||||
fi
|
||||
if grep -Fxq "create_mirrors" $COMPLETION_FILE; then
|
||||
return
|
||||
fi
|
||||
|
|
|
@ -41,7 +41,6 @@ CONFIGURATION_FILE="/root/${PROJECT_NAME}.cfg"
|
|||
# if this is blank then just use the default repos
|
||||
FRIENDS_MIRRORS_SERVER=
|
||||
REPOS=
|
||||
MIRRORS_BASE=/home/mirrors/mirrors
|
||||
MY_MIRRORS_PASSWORD=
|
||||
FRIENDS_MIRRORS_PASSWORD=
|
||||
NEW_MIRRORS='no'
|
||||
|
|
Loading…
Reference in New Issue