forked from ungleich-public/cdist
remove set -e
on explorers (they should be able to fail gracefully)
This commit is contained in:
parent
a46da35bbc
commit
085b2a2b10
5 changed files with 5 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
cd /dev
|
||||
echo sd? hd? vd?
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
sysctl -n security.jail.jailed 2>/dev/null | grep "1" || true
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
uname -s
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
command -v svc || true
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
[ -f /etc/environment ] && . /etc/environment
|
||||
[ -f /etc/profile ] && . /etc/profile
|
||||
go version 2>/dev/null || true
|
||||
|
|
Loading…
Reference in a new issue