From f29b8a200c77c78ec9004d1d9ba8dd4d2d9f251e Mon Sep 17 00:00:00 2001
From: Natasha Pavlovikj <npavlovikj2@unl.edu>
Date: Thu, 25 Jul 2024 19:33:35 -0500
Subject: [PATCH] Remove HTCondor job example

---
 .../submitting_htcondor_jobs.md               | 34 -------------------
 1 file changed, 34 deletions(-)
 delete mode 100644 content/submitting_jobs/submitting_htcondor_jobs.md

diff --git a/content/submitting_jobs/submitting_htcondor_jobs.md b/content/submitting_jobs/submitting_htcondor_jobs.md
deleted file mode 100644
index df415edc..00000000
--- a/content/submitting_jobs/submitting_htcondor_jobs.md
+++ /dev/null
@@ -1,34 +0,0 @@
-+++
-title = "Submitting HTCondor Jobs"
-description =  "How to submit HTCondor Jobs on HCC resources."
-weight=50
-+++
-
-If you require features of HTCondor, such as DAGMan or Pegasus,
-[HTCondor](http://research.cs.wisc.edu/htcondor/) can
-submit jobs using HTCondor's PBS integration.  This can
-be done by adding `grid_resource = pbs` to the submit file.  An example
-submission script is below:
-
-{{% panel theme="info" header="submit.condor" %}}
-{{< highlight batch >}}
-universe = grid
-grid_resource = pbs
-executable = test.sh
-output = stuff.out
-error = stuff.err
-log = stuff.log
-batch_queue = guest
-queue
-{{< /highlight >}}
-{{% /panel %}}
-
-The above script will translate the condor submit file into a SLURM
-submit file, and execute the `test.sh` executable on a worker node. 
-
-### Using Pegasus
-
-If you are using [Pegasus](http://pegasus.isi.edu),
-instructions on using the *glite* interface (as shown above) are
-available on the
-[User Guide](http://pegasus.isi.edu/wms/docs/latest/execution_environments.php#glite).
-- 
GitLab