Compare commits

..

10 Commits

Author SHA1 Message Date
13b32535c3 . 2025-04-25 13:25:55 +01:00
d18de5e670 . 2025-04-03 20:42:24 +01:00
0f8cf2c787 . 2025-04-03 19:57:28 +01:00
0311119c96 . 2025-04-03 19:49:18 +01:00
9ab557813f . 2024-10-02 15:54:19 +01:00
dfe9b8c01a . 2024-09-29 20:39:47 +01:00
d4a52a608b . 2024-09-21 16:52:28 +01:00
06fb2d4411 . 2024-09-17 16:35:08 +01:00
3eca81c5bf . 2024-09-17 16:28:05 +01:00
49f71c4b38 . 2024-09-06 22:26:12 +01:00
6 changed files with 10 additions and 2 deletions

0
asdqwe Normal file
View File

BIN
bin/task Executable file

Binary file not shown.

View File

@ -9,5 +9,6 @@ ${BINARY} cli config defaults folder min-disk-free value set ${MINSPACE}
${BINARY} cli config defaults folder min-disk-free unit set GB ${BINARY} cli config defaults folder min-disk-free unit set GB
${BINARY} cli config options min-home-disk-free unit set GB ${BINARY} cli config options min-home-disk-free unit set GB
${BINARY} cli config options min-home-disk-free value set ${MINSPACE} ${BINARY} cli config options min-home-disk-free value set ${MINSPACE}
${BINARY} cli config options overwrite-remote-dev-names set true
rm -f ${TEMP1} ${TEMP2} rm -f ${TEMP1} ${TEMP2}

View File

@ -1,4 +1,4 @@
#!/bin/sh -x #!/bin/sh
echo $0 echo $0
# if [ ! -d /zTools/zPrivateConfig ] && [ -d /static ] # if [ ! -d /zTools/zPrivateConfig ] && [ -d /static ]
@ -70,6 +70,11 @@ then
SECRETS=/zz/zSyno SECRETS=/zz/zSyno
fi fi
if [ -d /zz/zDigital/secrets ]
then
SECRETS=/zz/zDigital
fi
# echo "BASE=${BASE}" # echo "BASE=${BASE}"
# if [ -f ${BASE}/secrets/.${MYNAME} ] # if [ -f ${BASE}/secrets/.${MYNAME} ]
# then # then

View File

@ -51,7 +51,7 @@ _setaliases() {
alias path='echo -e ${PATH//:/\\n}' alias path='echo -e ${PATH//:/\\n}'
alias GitPull='/zz/zShared/sbin/GitPull' alias GitPull='/zz/zShared/sbin/GitPull'
ZANSIBLE=registry.nopenso.com/upload/zansible
alias zansible-playbook='docker run -it --rm -v $(pwd):/ansible ${ZANSIBLE}:latest ansible-playbook' alias zansible-playbook='docker run -it --rm -v $(pwd):/ansible ${ZANSIBLE}:latest ansible-playbook'
alias zansible-lint='docker run -it --rm -v $(pwd):/ansible ${ZANSIBLE}:latest ansible-lint' alias zansible-lint='docker run -it --rm -v $(pwd):/ansible ${ZANSIBLE}:latest ansible-lint'
@ -63,6 +63,7 @@ _setpath() {
/usr/local/bin /usr/local/bin
/usr/local/sbin /usr/local/sbin
/usr/local/sqlite/bin /usr/local/sqlite/bin
/zz/zShare/bin
) )
local i local i

View File

@ -1,4 +1,5 @@
#!/bin/sh #!/bin/sh
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
set -u set -u
######################################################## ########################################################