-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaned up content and added new modules
- Loading branch information
Showing
9 changed files
with
81 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
include::modules/con_managing-flatpak-using-project.adoc[] | ||
include::modules/con_the-flatpak-technology.adoc[] | ||
|
||
include::modules/proc_using-hammer-cli-for-flatpak-management.adoc[leveloffset=+1] | ||
include::modules/proc_setting-up-flatpak.adoc[leveloffset=+1] | ||
|
||
include::modules/proc_flatpak-remote-for-client-setup.adoc[leveloffset=+1] | ||
include::modules/proc_enabling-the-red-hat-flatpak-remote.adoc[leveloffset=+1] | ||
|
||
include::modules/proc_installing-flatpak-applications.adoc[leveloffset=+1] | ||
|
||
include::modules/proc_flatpak-remote-for-smartproxy-setup.adoc[leveloffset=+1] | ||
|
||
include::modules/proc_importing-and-exporting-content-to-project-server-for-flatpak.adoc[leveloffset=+1] | ||
include::modules/proc_importing-and-exporting-content-to-project-server-for-flatpak.adoc[leveloffset=+1] | ||
|
||
include::modules/proc_updating-flatpak-applications.adoc[leveloffset=+1] |
4 changes: 0 additions & 4 deletions
4
guides/common/modules/con_managing-flatpak-using-project.adoc
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[id="the-flatpak-technology_{context}"] | ||
= The Flatpak technology | ||
|
||
Flatpak provides a sandbox environment for application building, deployment, distribution, and installation. | ||
|
||
Applications that you launch using Flatpak have minimum access to the host system, which protects the system installation against third-party applications. | ||
Flatpak provides application stability regardless of the versions of libraries installed on the host system. | ||
|
||
Flatpak applications are distributed from repositories called remotes. | ||
Red Hat provides a remote with {Project} applications. | ||
Additionally, third-party remotes are available as well. | ||
Red Hat does not support applications from third-party remotes. |
22 changes: 11 additions & 11 deletions
22
...ng-hammer-cli-for-flatpak-management.adoc → ..._enabling-the-red-hat-flatpak-remote.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
guides/common/modules/proc_flatpak-remote-for-smartproxy-setup.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 2 additions & 47 deletions
49
...modules/proc_importing-and-exporting-content-to-project-server-for-flatpak.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[id="setting-up-flatpak_{context}"] | ||
= Setting up Flatpak | ||
|
||
This procedure installs the Flatpak package manager. | ||
|
||
.Procedure | ||
* Install the `flatpak` package: | ||
+ | ||
[subs="+attributes"] | ||
---- | ||
# {client-content-type} install flatpak | ||
---- |
24 changes: 24 additions & 0 deletions
24
guides/common/modules/proc_updating-flatpak-applications.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[id="updating-flatpak-applications_{context}"] | ||
= Updating Flatpak applications | ||
|
||
This procedure updates one or more installed Flatpak applications to the most recent version in the corresponding Flatpak remote. | ||
|
||
.Prerequisites | ||
* Flatpak is installed. | ||
* A Flatpak remote is enabled. | ||
|
||
.Procedure | ||
* Update one or more Flatpak applications: | ||
|
||
** To update a specific Flatpak application, specify the application ID: | ||
+ | ||
[subs=+quotes] | ||
---- | ||
$ flatpak update __application-id__ | ||
---- | ||
|
||
** To update all Flatpak applications, specify no application ID: | ||
+ | ||
---- | ||
$ flatpak update | ||
---- |