summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorpappy2020-09-22 12:34:34 +0200
committerpappy2020-09-22 12:34:34 +0200
commit07116cd0a47a12753e15123d7d8b708f9ef460a3 (patch)
tree282114522062101b8800b7f516a1e61fed30c918
parent130a5bb934f92e02d74c5272e3e61c507653c941 (diff)
downloadaur-07116cd0a47a12753e15123d7d8b708f9ef460a3.tar.gz
cleanup
-rw-r--r--aliases.sh13
-rw-r--r--dockerfile.txt15
2 files changed, 0 insertions, 28 deletions
diff --git a/aliases.sh b/aliases.sh
deleted file mode 100644
index 3e3fffa34f7a..000000000000
--- a/aliases.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-# If not running interactively, don't do anything
-[[ $- != *i* ]] && return
-
-alias vi=vim
-alias ls='ls --color=auto'
-alias l='ls -h -l'
-alias ll='l -l'
-alias la='l -la'
-alias df='df -h'
-alias du='du -h'
-alias ..='cd ..'
-alias ...='cd .. && cd ..'
-
diff --git a/dockerfile.txt b/dockerfile.txt
deleted file mode 100644
index 44b84ea0b5b8..000000000000
--- a/dockerfile.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM docker.ascelion.com/iot-arch
-
-ARG PASSWORD
-RUN echo "machine arch.ascelion.com login iot-talkd password $PASSWORD" >/root/.netrc
-RUN pacman -Syu --noconfirm
-RUN pacman -S --needed --noconfirm jdk8-openjdk
-
-RUN useradd -u 1000 -m build
-RUN echo "build ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/build
-VOLUME /home/build
-
-ENTRYPOINT ["tail", "-f", "/dev/null"]
-
-ADD aliases.sh /etc/profile.d
-