Skip to content

Commit

Permalink
CLDR-17288 update scripts some for jammy
Browse files Browse the repository at this point in the history
- relates some to CLDR-16735
  • Loading branch information
srl295 committed Dec 26, 2023
1 parent 7ea6b4e commit f908319
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tools/scripts/ansible/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Vagrant.configure("2") do |config|
end
# increase the boot timeout
config.vm.boot_timeout = 600
config.vm.box = "hashicorp/bionic64";
config.vm.box = "ubuntu/jammy64";
config.vm.define "surveytool"
config.vm.hostname = "surveytool"
# forward http and https
Expand All @@ -19,6 +19,7 @@ Vagrant.configure("2") do |config|
apt-get install -y python3 sudo
SHELL
config.vm.provision "ansible" do |ansible|
ansible.compatibility_mode = "2.0"
ansible.playbook = "vagrant-playbook.yml"
end
end
5 changes: 4 additions & 1 deletion tools/scripts/ansible/cldr-apps-playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
notify: Restart OpenLiberty
- name: Checkout CLDR trunk
become: yes
become_user: "{{ cldr_surveytool_user }}"
git:
repo: https://github.com/unicode-org/cldr.git
dest: "{{ cldr_trunk_path }}"
Expand All @@ -57,6 +56,10 @@
# this is a deep clone because we will need to keep updating
# it with history. It does not include LFS as that
# is not needed for the surveytool.
- name: Fix CLDR trunk perms
file:
path: "{{ cldr_trunk_path }}"
owner: "{{ cldr_surveytool_user }}"
handlers:
- name: Restart OpenLiberty
service:
Expand Down

0 comments on commit f908319

Please sign in to comment.