forked from opensciencegrid/condor-cron
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Making condor-cron work with a Condor installed in a non-standard loc…
…ation. Instead of calling /usr/bin/condor_CMD from the wrappers, just assume that the necessary command is in the PATH (and we'll take care of setting the PATH in condor-cron.sh) git-svn-id: https://vdt.cs.wisc.edu/svn/software/condor-cron/trunk@13931 4e558342-562e-0410-864c-e07659590f8c
- Loading branch information
Scot Kronenfeld
committed
Jan 13, 2012
1 parent
3859f46
commit 29df0d2
Showing
10 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_config_val "$@" | ||
exec condor_config_val "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_history "$@" | ||
exec condor_history "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_hold "$@" | ||
exec condor_hold "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_q "$@" | ||
exec condor_q "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_qedit "$@" | ||
exec condor_qedit "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_release "$@" | ||
exec condor_release "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_rm "$@" | ||
exec condor_rm "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_submit "$@" | ||
exec condor_submit "$@" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
. /usr/libexec/condor-cron/condor-cron.sh | ||
exec /usr/bin/condor_version "$@" | ||
exec condor_version "$@" |
This file contains 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