Remove previous blog content when creating new identity
This commit is contained in:
parent
59d053e4cc
commit
ce30f1680f
|
@ -755,7 +755,6 @@ function setup_ipfs {
|
||||||
IPFS_PUBLIC=/home/$MY_USERNAME/.ipfs-public
|
IPFS_PUBLIC=/home/$MY_USERNAME/.ipfs-public
|
||||||
|
|
||||||
su -c "systemctl --user enable ipfs" - $MY_USERNAME
|
su -c "systemctl --user enable ipfs" - $MY_USERNAME
|
||||||
su -c "systemctl --user start ipfs" - $MY_USERNAME
|
|
||||||
|
|
||||||
if [ -f $CURRENT_BLOG_INDEX ]; then
|
if [ -f $CURRENT_BLOG_INDEX ]; then
|
||||||
shred -zu $CURRENT_BLOG_INDEX
|
shred -zu $CURRENT_BLOG_INDEX
|
||||||
|
@ -766,9 +765,20 @@ function setup_ipfs {
|
||||||
rm -rf /home/$MY_USERNAME/Public
|
rm -rf /home/$MY_USERNAME/Public
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -d /home/$MY_USERNAME/CreateBlog/content ]; then
|
||||||
|
shred -zu /home/$MY_USERNAME/CreateBlog/content/*
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -d /home/$MY_USERNAME/.ipfs ]; then
|
if [ -d /home/$MY_USERNAME/.ipfs ]; then
|
||||||
shred -zu /home/$MY_USERNAME/.ipfs/config
|
shred -zu /home/$MY_USERNAME/.ipfs/config
|
||||||
rm -rf /home/$MY_USERNAME/.ipfs
|
rm -rf /home/$MY_USERNAME/.ipfs
|
||||||
|
su -c "systemctl --user restart ipfs" - $MY_USERNAME
|
||||||
|
else
|
||||||
|
su -c "systemctl --user start ipfs" - $MY_USERNAME
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f /home/$MY_USERNAME/.blog-index ]; then
|
||||||
|
shred -zu /home/$MY_USERNAME/.blog-index
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -f /home/$MY_USERNAME/.ipfs-id ]; then
|
if [ -f /home/$MY_USERNAME/.ipfs-id ]; then
|
||||||
|
@ -862,7 +872,7 @@ if [ -f $MESH_INSTALL_SETUP ]; then
|
||||||
|
|
||||||
if [ ! $set_new_identity ]; then
|
if [ ! $set_new_identity ]; then
|
||||||
# sleep in order to allow other daemons to start up
|
# sleep in order to allow other daemons to start up
|
||||||
sleep 15
|
sleep 5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# clear the install log
|
# clear the install log
|
||||||
|
|
Loading…
Reference in New Issue