warding 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -2
- data/debug/quick-install.sh +5 -0
- data/lib/warding.rb +2 -2
- data/lib/warding/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9267b5fc3eab4a6be04294384487902a8b912985c00b23719b35214fffce068
|
4
|
+
data.tar.gz: c79a3897ce992395a0ac0004c18055999c56041e5d5628278027ee691a02ff2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51122dcad475aeefbf92ebe49c8c85a6290d94aa1bf3fd64f2fa5c11d9d3b8d2507b6b6546669c5a10abcea34aef341ff7e9e0f196545114214226db566545e7
|
7
|
+
data.tar.gz: f8d20c1bba7b6feb04fdc66436c30e5584ed0e03b46014962580a0eabb5edda00ea8d10cdfd2cc594e9d3a8fdb15f41c1405551dbde1619160ba690f9d7911b6
|
data/README.md
CHANGED
@@ -10,11 +10,19 @@ Install warding by using the `gem install` command.
|
|
10
10
|
gem install warding
|
11
11
|
```
|
12
12
|
|
13
|
+
Or use the quick install method:
|
14
|
+
|
15
|
+
```bash
|
16
|
+
wget -qO- https://raw.githubusercontent/marlospomin/warding/master/debug/quick-install.sh
|
17
|
+
export PATH="`ruby -e 'puts Gem.user_dir'`/bin:$PATH"
|
18
|
+
warding
|
19
|
+
```
|
20
|
+
|
13
21
|
## Usage
|
14
22
|
|
15
23
|
1. Download Arch Linux.
|
16
|
-
2. Boot
|
17
|
-
3. Install warding
|
24
|
+
2. Boot the live ISO.
|
25
|
+
3. Install warding either from source or with the gem command.
|
18
26
|
4. Run the binary executable `warding` and fill in the prompts.
|
19
27
|
5. Enjoy.
|
20
28
|
|
data/lib/warding.rb
CHANGED
@@ -239,7 +239,7 @@ module Warding
|
|
239
239
|
# check if on VM
|
240
240
|
if `arch-chroot /mnt dmidecode -s system-manufacturer`.include?("VMware, Inc.")
|
241
241
|
# install and enable VMware utils
|
242
|
-
`arch-chroot /mnt pacman -S
|
242
|
+
`arch-chroot /mnt pacman -S open-vm-tools --noconfirm`
|
243
243
|
`arch-chroot /mnt systemctl enable vmtoolsd`
|
244
244
|
end
|
245
245
|
end
|
@@ -249,7 +249,7 @@ module Warding
|
|
249
249
|
def setup_visuals(theme = "none")
|
250
250
|
if theme == "none"
|
251
251
|
nil
|
252
|
-
elsif theme == "
|
252
|
+
elsif theme == "plasma"
|
253
253
|
# install packages
|
254
254
|
`arch-chroot /mnt pacman -S xorg-server xf86-video-intel plasma konsole dolphin kmix sddm kvantum-qt5`
|
255
255
|
# create conf dir
|
data/lib/warding/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: warding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marlos Pomin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-09-
|
11
|
+
date: 2020-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tty-prompt
|
@@ -42,6 +42,7 @@ files:
|
|
42
42
|
- Rakefile
|
43
43
|
- bin/warding
|
44
44
|
- debug/install.sh
|
45
|
+
- debug/quick-install.sh
|
45
46
|
- lib/warding.rb
|
46
47
|
- lib/warding/version.rb
|
47
48
|
- warding.gemspec
|