@@ -140,24 +140,21 @@ purged from the system. This only applies if purge flag is set and purge task is
140
140
141
141
This will install deb files specified in the YAML config under `config.install.debs`.
142
142
143
- - Each entry is URL to the deb file. URL MUST be `http` or `https`, ftp UTLs are not supported!
143
+ - Each entry is URL to the deb file. URL MUST be `http` or `https`, ftp URLs are not supported!
144
144
145
145
` ` ` yaml
146
146
api: 3
147
147
config:
148
148
install:
149
149
debs:
150
- - https://atom-installer.github.com/v1.21.1/atom-amd64.deb,ATOM-Editor.deb
151
-
150
+ - https://atom-installer.github.com/v1.21.1/atom-amd64.deb
152
151
` ` `
153
152
154
- - First part is the URL to the deb file separated by `,` name of the file.
155
-
156
153
# # Install Static binaries to /usr/local/bin
157
154
158
155
This will install binaries in YAML config under `config.install.binaries`.
159
156
160
- - **Simulate** option **will** download the package but not install it.
157
+ - **Simulate** option **will** download the binary but not install it.
161
158
- Configuration is of format `binary-name::URL`. Binary name **MUST** mach regex `^([a-zA-z0-9_-]+)$`.
162
159
- For example, to install `kubectl`, the entry should look like below.
163
160
@@ -170,16 +167,11 @@ config:
170
167
171
168
` ` `
172
169
173
- !!! note "Note on file names in configuration"
174
- Please note that file will be saved with the name mentioned in the file and will be in your path.
175
-
176
170
# # Purge Unwanted Packages
177
171
178
172
This will purge Unwanted packages from the system.
179
173
180
- - The packages mentioned in `config.purge` in yaml.
181
- - The format is similar to that of packages, one package per line
182
-
174
+ - The packages mentioned in list `config.purge` in yaml.
183
175
!!! warning
184
176
It is necessary to pass command line argument `-d` or set `config.flags.purge_enabled : true` in config.
185
177
@@ -245,22 +237,22 @@ config:
245
237
246
238
| Name | Key |
247
239
| ------------------------------------------------------------------------------------------ | ------------- |
248
- | [Add Repositories](#add-repositories) | `repo` |
240
+ | Update APT Metadata(Same as running `apt-get update`) | `update` |
241
+ | Upgrade packages | `upgrade` |
242
+ | [Add Repositories](#add-repositories) | `add_repo` |
249
243
| [Add personal package archives (PPA)](#add-personal-package-archives-ppa) | `ppa` |
250
244
| [Install apt packages](#install-apt-packages) | `apt` |
251
- | [Install Debian package archives (.deb files)](#install-debian-package-archives-deb-files) | `dev` |
245
+ | [Install Debian package archives (.deb files)](#install-debian-package-archives-deb-files) | `debs` |
252
246
| [Install Static binaries to /usr/local/bin](#install-static-binaries-to-usrlocalbin) | `binaries` |
253
247
| [Purge Unwanted Packages](#purge-unwanted-packages) | `purge` |
254
248
| [Installing Snap packages](#installing-snap-packages) | `snaps` |
255
- | [All In one](#all-in-one) | `all` |
256
249
257
250
# # Delete logs
258
251
259
252
A log file is generated containing all the output generated by the apt and other commands
260
253
261
- - This task will delete the log file `after-effects.log`.
262
- - Log file is located in the directory `logs` in folder which you ran thin script.
263
- - Sometimes errors might not be written to log file but displayed on screen and vice-versa.
254
+ - This task will delete the log file `after-effects.log` in logs folder
255
+
264
256
265
257
[Miniconda] : https://www.anaconda.com/blog/rpm-and-debian-repositories-for-miniconda
266
258
[Brave Browser] : https://brave.com/linux/
0 commit comments