This repository was archived by the owner on May 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 13 files changed +29
-38
lines changed Expand file tree Collapse file tree 13 files changed +29
-38
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ with Packer.
197
197
198
198
` ` ` bash
199
199
git clone --recurse-submodules https://github.com/ruzickap/packer-templates.git
200
- cd packer-templates
200
+ cd packer-templates || exit
201
201
` ` `
202
202
203
203
* Ubuntu:
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ You can also use the command directly when using already pre-configured server:
42
42
gitlab-runner register \
43
43
--non-interactive \
44
44
--tag-list packer-templates \
45
- --registration-token {{ GITLAB_REGISTRATION_TOKEN }} \
45
+ --registration-token " {{ GITLAB_REGISTRATION_TOKEN }}" \
46
46
--url https://gitlab.com/ \
47
47
--executor shell
48
48
```
Original file line number Diff line number Diff line change @@ -34,9 +34,8 @@ apt install -y libvirt-bin vagrant-libvirt
34
34
Install and connect to the box:
35
35
36
36
``` bash
37
- mkdir ${NAME}
38
- cd ${NAME}
39
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
37
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
38
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
40
39
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
41
40
# or
42
41
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -33,9 +33,8 @@ apt install -y libvirt-bin vagrant-libvirt
33
33
Install and connect to the box:
34
34
35
35
``` bash
36
- mkdir ${NAME}
37
- cd ${NAME}
38
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
36
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
37
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
39
38
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
40
39
# or
41
40
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ web pages:
36
36
dnf remove vagrant
37
37
38
38
VAGRANT_LATEST_VERSION=$( curl -s https://checkpoint-api.hashicorp.com/v1/check/vagrant | jq -r -M ' .current_version' )
39
- dnf install https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm
39
+ dnf install " https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm"
40
40
41
41
# virtualbox
42
42
# Details here: https://rpmfusion.org/Howto/VirtualBox
@@ -51,9 +51,8 @@ vagrant plugin install vagrant-libvirt
51
51
Install and connect to the box:
52
52
53
53
``` bash
54
- mkdir ${NAME}
55
- cd ${NAME}
56
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
54
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
55
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
57
56
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
58
57
# or
59
58
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -34,9 +34,8 @@ apt install -y libvirt-bin vagrant-libvirt
34
34
Install and connect to the box:
35
35
36
36
``` bash
37
- mkdir ${NAME}
38
- cd ${NAME}
39
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
37
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
38
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
40
39
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
41
40
# or
42
41
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ web pages:
36
36
dnf remove vagrant
37
37
38
38
VAGRANT_LATEST_VERSION=$( curl -s https://checkpoint-api.hashicorp.com/v1/check/vagrant | jq -r -M ' .current_version' )
39
- dnf install https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm
39
+ dnf install " https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm"
40
40
41
41
# virtualbox
42
42
# Details here: https://rpmfusion.org/Howto/VirtualBox
@@ -51,9 +51,8 @@ vagrant plugin install vagrant-libvirt
51
51
Install and connect to the box:
52
52
53
53
``` bash
54
- mkdir ${NAME}
55
- cd ${NAME}
56
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
54
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
55
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
57
56
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
58
57
# or
59
58
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ web pages:
37
37
dnf remove vagrant
38
38
39
39
VAGRANT_LATEST_VERSION=$( curl -s https://checkpoint-api.hashicorp.com/v1/check/vagrant | jq -r -M ' .current_version' )
40
- dnf install https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm
40
+ dnf install " https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm"
41
41
42
42
# virtualbox
43
43
# Details here: https://rpmfusion.org/Howto/VirtualBox
@@ -52,9 +52,8 @@ vagrant plugin install vagrant-libvirt
52
52
Install and connect to the box:
53
53
54
54
``` bash
55
- mkdir ${NAME}
56
- cd ${NAME}
57
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
55
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
56
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
58
57
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
59
58
# or
60
59
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ web pages:
36
36
dnf remove vagrant
37
37
38
38
VAGRANT_LATEST_VERSION=$( curl -s https://checkpoint-api.hashicorp.com/v1/check/vagrant | jq -r -M ' .current_version' )
39
- dnf install https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm
39
+ dnf install " https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm"
40
40
41
41
# virtualbox
42
42
# Details here: https://rpmfusion.org/Howto/VirtualBox
@@ -51,9 +51,8 @@ vagrant plugin install vagrant-libvirt
51
51
Install and connect to the box:
52
52
53
53
``` bash
54
- mkdir ${NAME}
55
- cd ${NAME}
56
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
54
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
55
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
57
56
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
58
57
# or
59
58
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ web pages:
36
36
dnf remove vagrant
37
37
38
38
VAGRANT_LATEST_VERSION=$( curl -s https://checkpoint-api.hashicorp.com/v1/check/vagrant | jq -r -M ' .current_version' )
39
- dnf install https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm
39
+ dnf install " https://releases.hashicorp.com/vagrant/${VAGRANT_LATEST_VERSION} /vagrant_${VAGRANT_LATEST_VERSION} _x86_64.rpm"
40
40
41
41
# virtualbox
42
42
# Details here: https://rpmfusion.org/Howto/VirtualBox
@@ -51,9 +51,8 @@ vagrant plugin install vagrant-libvirt
51
51
Install and connect to the box:
52
52
53
53
``` bash
54
- mkdir ${NAME}
55
- cd ${NAME}
56
- vagrant init ${VAGRANT_CLOUD_USER} /${NAME}
54
+ mkdir " ${NAME} " && cd " ${NAME} " || exit
55
+ vagrant init " ${VAGRANT_CLOUD_USER} /${NAME} "
57
56
VAGRANT_DEFAULT_PROVIDER=libvirt vagrant up
58
57
# or
59
58
VAGRANT_DEFAULT_PROVIDER=virtualbox vagrant up
You can’t perform that action at this time.
0 commit comments