From 7bfa35dd2b7b65475e11f594d66d608a69176862 Mon Sep 17 00:00:00 2001 From: Mike Ripley Date: Sat, 29 May 2021 16:56:56 -0400 Subject: [PATCH 1/4] Update Eclipse Checkstyle repository URL --- roles/eclipse/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/eclipse/tasks/main.yml b/roles/eclipse/tasks/main.yml index c4dc3505..1ddd4d30 100644 --- a/roles/eclipse/tasks/main.yml +++ b/roles/eclipse/tasks/main.yml @@ -43,7 +43,7 @@ {{ eclipse.install_path }}/eclipse -nosplash -application org.eclipse.equinox.p2.director - -repository http://eclipse-cs.sourceforge.net/update/ + -repository https://checkstyle.org/eclipse-cs-update-site/ -installIU net.sf.eclipsecs.feature.group -destination {{ eclipse.install_path }} args: From 8576245bfc7d53186f3b7a734c9cf461df54375d Mon Sep 17 00:00:00 2001 From: Mike Ripley Date: Sat, 29 May 2021 18:47:06 -0400 Subject: [PATCH 2/4] Make stu-home shortcut Mint only due to dependency on Nemo --- roles/user/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/user/tasks/main.yml b/roles/user/tasks/main.yml index 235ff53a..a30c4cd7 100644 --- a/roles/user/tasks/main.yml +++ b/roles/user/tasks/main.yml @@ -79,6 +79,7 @@ group: '{{ item.gid }}' mode: "0750" with_items: "{{ real_users }}" + when: "ansible_distribution == 'Linux Mint'" - name: Add profile to user bashrc lineinfile: path: '{{ item.homedir }}/.bashrc' From dbbfa66c6c1cf5fad79ce11c9e9eaefe661b52f2 Mon Sep 17 00:00:00 2001 From: Mike Ripley Date: Fri, 28 May 2021 11:31:52 -0400 Subject: [PATCH 3/4] Restore assume-yes option for Ubuntu compatibility --- scripts/oem-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/oem-build b/scripts/oem-build index 1d2b2257..87d032f2 100755 --- a/scripts/oem-build +++ b/scripts/oem-build @@ -86,7 +86,7 @@ main () { apt-get update user "Installing prerequisite packages" - apt-get install -V ansible git aptitude gcc make perl \ + apt-get install -V -y ansible git aptitude gcc make perl \ || error "Unable to install prerequisite packages" user "Attempting to install VBox Guest Additions" From 6d3cc63b21bf2a5dfe6b7a2af8c8f85efc5738ab Mon Sep 17 00:00:00 2001 From: Mike Ripley Date: Sat, 29 May 2021 19:45:13 -0400 Subject: [PATCH 4/4] Only run iso update on UUG org repo --- .github/workflows/auto-update-iso.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto-update-iso.yml b/.github/workflows/auto-update-iso.yml index cf35fe7e..db367eb5 100644 --- a/.github/workflows/auto-update-iso.yml +++ b/.github/workflows/auto-update-iso.yml @@ -8,6 +8,7 @@ env: UBUNTU_RELEASE: focal jobs: update-ubuntu: + if: github.repository == 'jmunixusers/cs-vm-build' name: Update Ubuntu ISO file name runs-on: ubuntu-latest steps: