-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Rodrigo Siqueira <[email protected]>
- Loading branch information
1 parent
5c87e4f
commit 9eaeac4
Showing
31 changed files
with
3,944 additions
and
17 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
# TODO: This file is very similar to the Arch linux. Probably we can merge it | ||
- name: Install common packages | ||
package: | ||
name: "{{ packages }}" | ||
state: latest | ||
vars: | ||
packages: | ||
- xorg |
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
- geany | ||
- ctags | ||
- vim | ||
- autoconf |
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,19 @@ | ||
- name: Install basic devel packages | ||
apt: | ||
name: "{{ packages }}" | ||
state: latest | ||
vars: | ||
packages: | ||
- build-essential | ||
- bc | ||
- moreutils # This package has the `errno -l` command. I love it! | ||
- geany | ||
- exuberant-ctags | ||
- vim | ||
- libncurses-dev # Kernel: menus | ||
- libelf-dev # Kernel: orc stuff | ||
- libssl-dev # Kernel: openssl stuff | ||
- flex | ||
- bison | ||
- kernel-package | ||
- autoconf |
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,3 +1,6 @@ | ||
--- | ||
- include: arch.yml | ||
when: ansible_os_family == 'Archlinux' | ||
|
||
- include: debian.yml | ||
when: ansible_os_family == 'Debian' |
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,35 @@ | ||
- name: Update system | ||
apt: update_cache=yes upgrade=yes | ||
|
||
- name: Install required packages | ||
apt: | ||
name: "{{ packages }}" | ||
state: latest | ||
vars: | ||
packages: | ||
- lxterminal | ||
- rsync | ||
- xterm | ||
- firefox | ||
- alsa-utils | ||
- curl | ||
- wget | ||
- screen | ||
- redshift | ||
- feh | ||
- xmlto | ||
- docbook-xsl | ||
- kmod | ||
- inetutils-tools | ||
- xfce4-power-manager | ||
- vim | ||
- xorg | ||
- xserver-xorg-core | ||
- net-tools # netstat and related stuff | ||
- rng-tools | ||
- haveged # TODO: we have to enable it, create a task for setup it | ||
- elinks | ||
- abook | ||
- lshw | ||
- htop | ||
- sudo |
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
Oops, something went wrong.