ShadowArch fixes

This commit is contained in:
DarkFeather
2017-06-23 13:56:31 -05:00
parent 429b7e7b0c
commit 78de31f832
8 changed files with 126 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
LIST=arch-update clean-exim clean-exim-input close-guest fix-sound log-guest open-guest restart-service silent-guardian proxy simple-web
LIST=arch-update clean-exim clean-exim-input close-guest fix-sound log-guest open-guest restart-service silent-guardian revproxy simple-web
LOCATION=/root/bin
INSTALLER != curl -s https://aninix.net/foundation/installer-test.bash | /bin/bash
PERMISSION=0700
@@ -7,6 +7,7 @@ compile:
install: compile
mkdir -p ${LOCATION};
mkdir -p /var/log/aninix/
for i in ${LIST}; do cp ./$$i ${LOCATION}; done
make checkperm
@@ -23,4 +24,5 @@ clean:
@echo Nothing to do.
diff:
for i in ${LIST}; do diff ./${i} ${LOCATION}/${i}; done
count=0; for i in ${LIST}; do echo $$i; diff ./$$i ${LOCATION}/$$i; if [ $$? -ne 0 ]; then count=$$(( $$count + 1 )); fi; echo; done; echo Found $$count files to be different.