diff --git a/CHANGELOG.md b/CHANGELOG.md index fd7a572..7f3334a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,7 +34,7 @@ **example:** ``` mkdir arbiter2/2.1.0 -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git arbiter2/2.1.0 +git clone https://github.com/chpc-uofu/arbiter2.git arbiter2/2.1.0 cp arbiter2/1.3.2/etc/config.toml arbiter2/2.1.0/etc ln -s arbiter2/2.1.0 arbiter2/latest systemctl restart arbiter2 @@ -69,7 +69,7 @@ systemctl status arbiter2 **example:** ``` mkdir arbiter2/2.0.0 -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git arbiter2/2.0.0 +git clone https://github.com/chpc-uofu/arbiter2.git arbiter2/2.0.0 cp arbiter2/1.3.2/etc/config.toml arbiter2/2.0.0/etc ln -s arbiter2/2.0.0 arbiter2/latest pip3 install sqlalchemy # required for v2.0.0 @@ -121,7 +121,7 @@ systemctl restart arbiter2 **Example:** ``` mkdir arbiter2/1.4.0 -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git arbiter2/1.4.0 +git clone https://github.com/chpc-uofu/arbiter2.git arbiter2/1.4.0 cp arbiter2/1.3.3/etc/config.toml arbiter2/1.4.0/etc # Merge new load average reporting in integrations.py and overall_high_usage_email_template.txt into previous files ln -s arbiter2/1.4.0 arbiter2/latest @@ -155,7 +155,7 @@ systemctl restart arbiter2 **example:** ``` mkdir arbiter2/1.3.3 -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git arbiter2/1.3.3 +git clone https://github.com/chpc-uofu/arbiter2.git arbiter2/1.3.3 cp arbiter2/1.3.2/etc/config.toml arbiter2/1.3.3/etc ln -s arbiter2/1.3.3 arbiter2/latest systemctl restart arbiter2 @@ -196,7 +196,7 @@ systemctl restart arbiter2 **Example:** ``` mkdir arbiter2/1.3.2 -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git arbiter2/1.3.2 +git clone https://github.com/chpc-uofu/arbiter2.git arbiter2/1.3.2 cp arbiter2/1.3.1/etc/config.toml arbiter2/1.3.2/etc # Optionally add proc_owner_whitelist ln -s arbiter2/1.3.2 arbiter2/latest diff --git a/INSTALL.md b/INSTALL.md index ed48853..7c83150 100755 --- a/INSTALL.md +++ b/INSTALL.md @@ -12,14 +12,14 @@ A sample script called [setup.sh](setup.sh) can be used a reference for installi ### Acquiring the Arbiter2 source files -You can either grab the code from git or from source files [here](https://gitlab.chpc.utah.edu/arbiter2/arbiter2). +You can either grab the code from git or from source files [here](https://github.com/CHPC-UofU/arbiter2). ```bash -VERSION=1.4.1 # See https://gitlab.chpc.utah.edu/arbiter2/arbiter2, likely a newer version +VERSION=2.1.0 # See https://github.com/CHPC-UofU/arbiter2 likely a newer version PREFIX="/opt/" mkdir -p $PREFIX/src/ -git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git $PREFIX/src/Arbiter2 +git clone https://github.com/CHPC-UofU/arbiter2.git $PREFIX/src/Arbiter2 cd $PREFIX/src/Arbiter2 git checkout latest ``` @@ -27,11 +27,11 @@ git checkout latest Alternatively, ```bash -VERSION=1.4.1 # See https://gitlab.chpc.utah.edu/arbiter2/arbiter2, likely a newer version +VERSION=2.1.0 # See https://github.com/CHPC-UofU/arbiter2 likely a newer version mkdir $PREFIX/src/Arbiter2/ cd $PREFIX/src/Arbiter2 -wget https://gitlab.chpc.utah.edu/arbiter2/arbiter2/-/archive/$VERSION/arbiter2-$VERSION.tar.gz +wget https://github.com/CHPC-UofU/arbiter2/archive/refs/tags/v$VERSION.tar.gz ln -s latest arbiter2-$VERSION cd latest ``` diff --git a/arbiter2.service b/arbiter2.service index 6259ec1..2c200ff 100644 --- a/arbiter2.service +++ b/arbiter2.service @@ -1,6 +1,6 @@ [Unit] Description=Arbiter2 -Documentation=https://gitlab.chpc.utah.edu/arbiter2/arbiter2 +Documentation=https://github.com/chpc-uofu/arbiter2 # TODO: May need to change these depending on your setup (like adding network file system target) # Requires network to send mail and correctly get the hostname Wants=sendmail.service sssd.service network.target network-online.target diff --git a/setup.sh b/setup.sh index 52c8572..37ec4e2 100755 --- a/setup.sh +++ b/setup.sh @@ -45,7 +45,7 @@ fi arbdir=`pwd` if ask_if "Do you want to clone Arbiter2 to cwd? (if no, will ask what directory is it in)" "y"; then - git clone https://gitlab.chpc.utah.edu/arbiter2/arbiter2.git + git clone https://github.com/CHPC-UofU/arbiter2.git elif read -p "What dir is it in? " arbdir && [ -d "$arbdir" ]; then cd "$arbdir" diff --git a/tools/arbiter2-exporter.service b/tools/arbiter2-exporter.service index 7db403d..8050db5 100644 --- a/tools/arbiter2-exporter.service +++ b/tools/arbiter2-exporter.service @@ -1,6 +1,6 @@ [Unit] Description=Arbiter2 Prometheus Exporter -Documentation=https://gitlab.chpc.utah.edu/arbiter2/arbiter2 +Documentation=https://github.com/chpc-uofu/arbiter2 # TODO: May need to change these depending on your setup (like adding network file system target) # Requires network to send mail and correctly get the hostname Wants=sendmail.service sssd.service network.target network-online.target