Skip to content

Commit

Permalink
Merge pull request #63 from charlieok/minor_updates
Browse files Browse the repository at this point in the history
Minor updates
  • Loading branch information
charlieok committed Apr 17, 2019
2 parents 3931696 + 8abe1ae commit 367b6e9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -468,7 +468,7 @@ create a signature for. Likely you want the name of a git tag, such as `v2.0.4`.
From the project root directory, run:

```
zcash-gitian$ vagrant up --provision zcash-build
zcash-gitian$ vagrant up zcash-build
```

This will provision a Gitian host virtual machine that uses a Linux container (LXC) guest to perform
Expand Down
3 changes: 1 addition & 2 deletions roles/common/tasks/packages.yml
@@ -1,8 +1,7 @@
---
- name: Install some common packages.
apt:
name: "{{ item }}"
name: '{{ zcash_common_packages }}'
state: present
update_cache: yes
cache_valid_time: 3600
with_items: "{{ zcash_common_packages }}"
31 changes: 15 additions & 16 deletions roles/gitian/tasks/main.yml
Expand Up @@ -12,24 +12,23 @@

- name: Install Gitian dependencies.
apt:
name: "{{ item }}"
name:
- apt-cacher-ng
- bridge-utils
- curl
- debootstrap
- git-core
- gnupg2
- kpartx
- lintian
- lxc
- make
- python-cheetah
- qemu-utils
- ruby
- sudo
state: present
update_cache: yes
with_items:
- apt-cacher-ng
- bridge-utils
- curl
- debootstrap
- git-core
- gnupg2
- kpartx
- lintian
- lxc
- make
- python-cheetah
- qemu-utils
- ruby
- sudo

- name: Set up the Gitian build user with sudo.
user:
Expand Down

0 comments on commit 367b6e9

Please sign in to comment.