aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-01-28 11:10:26 -0200
committerSilvio Rhatto <rhatto@riseup.net>2018-01-28 11:10:26 -0200
commitbd23f3afb6238175924be485d77dedca381d278c (patch)
tree01ddde5a49071aeb1c54567f2bba7d9bf63abaa6
parent1fc87da3cee3fef248fe7c7d92cb77dbcf47cb5e (diff)
downloadinception-bd23f3afb6238175924be485d77dedca381d278c.tar.gz
inception-bd23f3afb6238175924be485d77dedca381d278c.tar.bz2
Updates inception
-rw-r--r--ChangeLog0
-rw-r--r--README.md6
-rw-r--r--TODO.md2
-rwxr-xr-xinfection16
4 files changed, 15 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index e69de29..0000000
--- a/ChangeLog
+++ /dev/null
diff --git a/README.md b/README.md
index edceabd..caaac6c 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,4 @@
-inception
-=========
+The Inception
+=============
+
+Infects your homedir with configurations and applications.
diff --git a/TODO.md b/TODO.md
index 74e5cc0..928a9f0 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,2 +1,4 @@
TODO
====
+
+* update action with trusted keys support using custom gpg keydir
diff --git a/infection b/infection
index fc29b1f..0f9e9ad 100755
--- a/infection
+++ b/infection
@@ -32,14 +32,16 @@ function infection_init {
#
# This way we can easily check the integrity of our dotfiles
# once the integrity of the apps repo is checked
- if [ -e "$HOME/.dotfiles" ]; then
- if [ ! -h "$HOME/.dotfiles" ] || [ "`readlink $HOME/.dotfiles`" != "apps/dotfiles" ]; then
- mkdir -p $BACKUPS
- mv $HOME/.dotfiles $BACKUPS/
- ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles )
+ if [ -e "$HOME/apps/dotfiles" ]; then
+ if [ -e "$HOME/.dotfiles" ]; then
+ if [ ! -h "$HOME/.dotfiles" ] || [ "`readlink $HOME/.dotfiles`" != "apps/dotfiles" ]; then
+ mkdir -p $BACKUPS
+ mv $HOME/.dotfiles $BACKUPS/
+ ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles )
+ fi
+ else
+ ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles )
fi
- else
- ( cd $HOME &> /dev/null && ln -s apps/dotfiles .dotfiles )
fi
#if [ ! -e "$HOME/.dotfiles" ]; then