-
-
Save kplimack/c916d62f5868a20aa423 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
some_resource 'derp' do | |
only_if "test -d /derp/derp && -L /derp/derp" # is a dir and a symlink | |
only_if "test -d /derp/derp && ! -L /derp/derp" # is a dir and not a symlink | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[root@ip-172-31-20-244 /]# test -L /tools/
[root@ip-172-31-20-244 /]# echo $?
1
[root@ip-172-31-20-244 /]# test -L /tools
[root@ip-172-31-20-244 /]# echo $?
0