-
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.
Merge pull request #66 from cradle8810/console_rebuild_20240303
ConsoleをGUIのUbuntuに変更
- Loading branch information
Showing
6 changed files
with
59 additions
and
27 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
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 @@ | ||
- name: Install Console modules | ||
ansible.builtin.apt: | ||
pkg: | ||
- ffmpegthumbnailer | ||
- gimp | ||
- heif-thumbnailer | ||
- libheif1 | ||
- openssh-server | ||
- samba-common | ||
- vlc | ||
- wireshark | ||
- xrdp |
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,20 @@ | ||
--- | ||
|
||
- name: Deny income policy | ||
community.general.ufw: | ||
state: enabled | ||
policy: deny | ||
|
||
- name: Allow SSH from service line | ||
community.general.ufw: | ||
rule: allow | ||
proto: tcp | ||
src: 192.168.1.0/24 | ||
port: '22' | ||
|
||
- name: Allow RDP from service line | ||
community.general.ufw: | ||
rule: allow | ||
proto: tcp | ||
src: 192.168.1.0/24 | ||
port: '3389' |
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,5 @@ | ||
_ | ||
___ ___ _ __ ___ ___ | | ___ | ||
/ __/ _ \| '_ \/ __|/ _ \| |/ _ \ | ||
| (_| (_) | | | \__ \ (_) | | __/ | ||
\___\___/|_| |_|___/\___/|_|\___| |
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,3 @@ | ||
export GNOME_SHELL_SESSION_MODE=ubuntu | ||
export XDG_CURRENT_DESKTOP=ubuntu:GNOME | ||
export XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg |