Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
P
plan-b
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Environmental Cheminformatics
plan-b
Compare Revisions
4c4741ab47a8ef5f3585a52de32cfea73b9485ae...a25da65efd272094636ba55e9bf3107591dc1e77
Source
a25da65efd272094636ba55e9bf3107591dc1e77
Select Git revision
...
Target
4c4741ab47a8ef5f3585a52de32cfea73b9485ae
Select Git revision
Compare
Commits (2)
Working setup
· 86d81e46
Todor Kondic
authored
Mar 03, 2021
86d81e46
Merge branch 'master' of
ssh://git-r3lab-server.uni.lu:8022/eci/plan-b
· a25da65e
Todor Kondic
authored
Mar 03, 2021
a25da65e
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
199 additions
and
43 deletions
+199
-43
ansibleit
ansibleit
+1
-1
files/etc/fuse.conf
files/etc/fuse.conf
+8
-0
files/etc/gdm3/custom.conf
files/etc/gdm3/custom.conf
+5
-2
files/etc/xinetd.d/vncserver
files/etc/xinetd.d/vncserver
+1
-2
files/etc/xinetd.d/vncserver.template
files/etc/xinetd.d/vncserver.template
+12
-0
files/etc/xinetd.d/vnctmpl
files/etc/xinetd.d/vnctmpl
+12
-0
files/home/user/.profile
files/home/user/.profile
+9
-4
hosts.txt
hosts.txt
+1
-0
main.yml
main.yml
+10
-4
tasks/guix.yml
tasks/guix.yml
+5
-2
tasks/spaces.yml
tasks/spaces.yml
+11
-7
tasks/users.yml
tasks/users.yml
+34
-0
tasks/vnc.yml
tasks/vnc.yml
+15
-4
vars/passwords.yml
vars/passwords.yml
+29
-12
vars/users.yml
vars/users.yml
+46
-5
No files found.
ansibleit
View file @
a25da65e
...
@@ -2,4 +2,4 @@
...
@@ -2,4 +2,4 @@
ansible-playbook
-i
hosts.txt main.yml
\
ansible-playbook
-i
hosts.txt main.yml
\
--vault-password-file
meta/zubizareta
\
--vault-password-file
meta/zubizareta
\
-u
root
-t
$1
-u
root
"
$@
"
files/etc/fuse.conf
0 → 100644
View file @
a25da65e
# /etc/fuse.conf - Configuration file for Filesystem in Userspace (FUSE)
# Set the maximum number of FUSE mounts allowed to non-root users.
# The default is 1000.
#mount_max = 1000
# Allow non-root users to specify the allow_other or allow_root mount options.
user_allow_other
files/etc/gdm3/custom.conf
View file @
a25da65e
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
[
daemon
]
[
daemon
]
# Uncomment the line below to force the login screen to use Xorg
# Uncomment the line below to force the login screen to use Xorg
#
WaylandEnable=false
WaylandEnable
=
false
# Enabling automatic login
# Enabling automatic login
# AutomaticLoginEnable = true
# AutomaticLoginEnable = true
...
@@ -20,9 +20,12 @@
...
@@ -20,9 +20,12 @@
AllowRemoteRoot
=
true
AllowRemoteRoot
=
true
DisallowTCP
=
false
DisallowTCP
=
false
[
xdmcp
]
[
xdmcp
]
DisplaysPerHost
=
15
Enable
=
true
Enable
=
true
MaxSessions
=
30
MaxSessions
=
30
MaxPending
=
15
[
chooser
]
[
chooser
]
...
@@ -30,5 +33,5 @@ MaxSessions=30
...
@@ -30,5 +33,5 @@ MaxSessions=30
# Uncomment the line below to turn on debugging
# Uncomment the line below to turn on debugging
# More verbose logs
# More verbose logs
# Additionally lets the X server dump core if it crashes
# Additionally lets the X server dump core if it crashes
#
Enable=true
Enable
=
true
files/etc/xinetd.d/vncserver
View file @
a25da65e
...
@@ -5,9 +5,8 @@ type = unlisted
...
@@ -5,9 +5,8 @@ type = unlisted
port = 5950
port = 5950
socket_type = stream
socket_type = stream
protocol = tcp
protocol = tcp
group = tty
wait = no
wait = no
user = nobody
user = nobody
server = /usr/bin/Xvnc
server = /usr/bin/Xvnc
server_args = -inetd -
query localhost -once
-fp /usr/share/X11/fonts/misc -securitytypes=X509None -X509Key=/etc/custom-vnc/key.vnc.pem -X509Cert=/etc/custom-vnc/cert.vnc.pem
server_args = -inetd -
once -query localhost
-fp /usr/share/X11/fonts/misc -securitytypes=X509None -X509Key=/etc/custom-vnc/key.vnc.pem -X509Cert=/etc/custom-vnc/cert.vnc.pem
}
}
files/etc/xinetd.d/vncserver.template
0 → 100644
View file @
a25da65e
service vncserver{{ item.login }}
{
disable = no
type = unlisted
port = {{ item.port }}
socket_type = stream
protocol = tcp
wait = yes
user = {{ item.login }}
server = /usr/bin/Xvnc
server_args = -inetd -once -query localhost -fp /usr/share/X11/fonts/misc -securitytypes=X509None -X509Key=/etc/custom-vnc/key.vnc.pem -X509Cert=/etc/custom-vnc/cert.vnc.pem
}
files/etc/xinetd.d/vnctmpl
0 → 100644
View file @
a25da65e
service vncserver{{ item.login }}
{
disable = no
type = unlisted
port = {{ item.vncport }}
socket_type = stream
protocol = tcp
wait = yes
user = {{ item.login }}
server = /usr/bin/Xvnc
server_args = -inetd -once -query localhost -fp /usr/share/X11/fonts/misc -securitytypes=X509None -X509Key=/etc/custom-vnc/key.vnc.pem -X509Cert=/etc/custom-vnc/cert.vnc.pem
}
files/home/user/.profile
View file @
a25da65e
...
@@ -26,9 +26,14 @@ if [ -d "$HOME/.local/bin" ] ; then
...
@@ -26,9 +26,14 @@ if [ -d "$HOME/.local/bin" ] ; then
PATH
=
"
$HOME
/.local/bin:
$PATH
"
PATH
=
"
$HOME
/.local/bin:
$PATH
"
fi
fi
GUIX_PROFILE
=
"
$HOME
/.config/guix/current"
GUIX_PROFILE
=
"
$HOME
/.config/guix/current"
.
"
$GUIX_PROFILE
/etc/profile"
if
[
-e
"
$GUIX_PROFILE
/etc/profile"
]
;
then
source
"
$GUIX_PROFILE
/etc/profile"
export
GUIX_PROFILE
export
GUIX_LOCPATH
=
"
$HOME
/.guix-profile/lib/locale"
export
PATH
=
"
$HOME
/.guix-profile/bin:
$PATH
"
fi
export
GUIX_PROFILE
export
PATH
=
"
$HOME
/.guix-profile/bin:
$PATH
"
export
GUIX_LOCPATH
=
"
$HOME
/.guix-profile/lib/locale"
hosts.txt
View file @
a25da65e
[planb]
[planb]
alien-one ansible_host=188.166.115.156
alien-one ansible_host=188.166.115.156
#alien-two ansible_host=128.199.51.27
[planb:vars]
[planb:vars]
ansible_python_interpreter=/usr/bin/python3
ansible_python_interpreter=/usr/bin/python3
...
...
main.yml
View file @
a25da65e
...
@@ -12,6 +12,9 @@
...
@@ -12,6 +12,9 @@
-
name
:
Set hostname.
-
name
:
Set hostname.
ansible.builtin.hostname
:
ansible.builtin.hostname
:
name
:
"
{{
inventory_hostname
}}"
name
:
"
{{
inventory_hostname
}}"
tags
:
hostname
-
include
:
tasks/users.yml
tags
:
users
-
name
:
Copy profiles.
-
name
:
Copy profiles.
tags
:
profile
tags
:
profile
copy
:
copy
:
...
@@ -22,15 +25,18 @@
...
@@ -22,15 +25,18 @@
-
include
:
tasks/apt.yml
-
include
:
tasks/apt.yml
-
include
:
tasks/users.yml
tags
:
apt
tags
:
users
-
include
:
tasks/ufw.yml
-
include
:
tasks/ufw.yml
tags
:
ufw
-
include
:
tasks/vnc.yml
tags
:
vnc
-
include
:
tasks/spaces.yml
-
include
:
tasks/spaces.yml
tags
:
spaces
tags
:
spaces
-
include
:
tasks/guix.yml
tags
:
guix
-
include
:
tasks/visual-appeal.yml
-
include
:
tasks/visual-appeal.yml
tags
:
visual
tags
:
visual
-
include
:
tasks/guix.yml
tags
:
guix
-
include
:
tasks/emacs.yml
-
include
:
tasks/emacs.yml
tags
:
emacs
tags
:
emacs
-
include
:
tasks/r-setup.yml
-
include
:
tasks/r-setup.yml
...
...
tasks/guix.yml
View file @
a25da65e
...
@@ -13,8 +13,9 @@
...
@@ -13,8 +13,9 @@
-
name
:
Run the guix install script.
-
name
:
Run the guix install script.
command
:
shell
:
yes | /etc/installguix.sh
cmd
:
/etc/installguix.sh
args
:
warn
:
no
creates
:
/var/guix/profiles/per-user/root/current-guix/bin/guix
creates
:
/var/guix/profiles/per-user/root/current-guix/bin/guix
-
name
:
Create .config/guix.
-
name
:
Create .config/guix.
...
@@ -22,8 +23,10 @@
...
@@ -22,8 +23,10 @@
path
:
"
/home/{{
item['login']
}}/.config/guix"
path
:
"
/home/{{
item['login']
}}/.config/guix"
state
:
directory
state
:
directory
recurse
:
yes
recurse
:
yes
force
:
no
become_user
:
"
{{
item['login']
}}"
become_user
:
"
{{
item['login']
}}"
loop
:
"
{{
users
}}"
loop
:
"
{{
users
}}"
ignore_errors
:
yes
-
name
:
Copy channels.
-
name
:
Copy channels.
...
...
tasks/spaces.yml
View file @
a25da65e
-
name
:
Upload the access token
-
name
:
Upload the access token
copy
:
copy
:
content
:
"
{{
accesstokens['spaces']
}}"
content
:
"
{{
accesstokens['spaces']
}}"
dest
:
/
home/ecitk/.
passwd-s3fs
dest
:
/
etc/
passwd-s3fs
mode
:
0600
mode
:
0600
owner
:
ecitk
owner
:
root
-
name
:
Adapt /etc/fuser.conf
copy
:
src
:
files/etc/fuse.conf
dest
:
/etc/fuse.conf
mode
:
0644
-
name
:
Make the mount point.
-
name
:
Make the mount point.
file
:
file
:
path
:
/mnt/exchange
path
:
/mnt/exchange
state
:
directory
state
:
directory
owner
:
ecitk
owner
:
root
group
:
scratch
group
:
scratch
mode
:
0770
mode
:
0770
ignore_errors
:
yes
-
name
:
Mount Spaces URL.
-
name
:
Mount Spaces URL.
command
:
>
command
:
>
s3fs planb /mnt/exchange
s3fs planb /mnt/exchange
-o passwd_file=/
home/ecitk/.
passwd-s3fs
-o passwd_file=/
etc/
passwd-s3fs
-o url=https://ams3.digitaloceanspaces.com/
-o url=https://ams3.digitaloceanspaces.com/
-o use_path_request_style
-o use_path_request_style
-o use_wtf8
-o use_wtf8
-o enable_content_md5
-o enable_content_md5
-o allow_other
-o allow_other
-o mp_umask=0007
ignore_errors
:
yes
-o umask=0007
become_user
:
ecitk
tasks/users.yml
View file @
a25da65e
...
@@ -36,6 +36,21 @@
...
@@ -36,6 +36,21 @@
when
:
item.sshkey
when
:
item.sshkey
loop
:
"
{{
users
}}"
loop
:
"
{{
users
}}"
-
name
:
Does .config exist?
ansible.builtin.shell
:
cmd
:
"
[
-e
\"
$HOME
\"
/.config
]
&&
echo
yes
||
echo
no"
register
:
isconfig
-
name
:
Create .config.
file
:
path
:
"
/home/{{
item.login
}}/.config"
state
:
directory
recurse
:
yes
owner
:
"
{{
item.login
}}"
mode
:
0750
loop
:
"
{{
users
}}"
when
:
not isconfig.stdout | bool
-
name
:
Create local bin.
-
name
:
Create local bin.
file
:
file
:
path
:
"
/home/{{
item.login
}}/.local/bin"
path
:
"
/home/{{
item.login
}}/.local/bin"
...
@@ -44,3 +59,22 @@
...
@@ -44,3 +59,22 @@
owner
:
"
{{
item.login
}}"
owner
:
"
{{
item.login
}}"
mode
:
0750
mode
:
0750
loop
:
"
{{
users
}}"
loop
:
"
{{
users
}}"
-
name
:
Create Desktop.
file
:
path
:
"
/home/{{
item.login
}}/Desktop"
state
:
directory
recurse
:
no
owner
:
"
{{
item.login
}}"
mode
:
0711
loop
:
"
{{
users
}}"
-
name
:
Create scratch
file
:
path
:
"
/mnt/scratch/{{
item.login
}}"
state
:
directory
recurse
:
yes
owner
:
"
{{
item.login
}}"
group
:
scratch
mode
:
0710
loop
:
"
{{
users
}}"
tasks/vnc.yml
View file @
a25da65e
-
name
:
Copy gdm3 config files.
-
name
:
Copy gdm3 config files.
ansible.builtin.copy
:
ansible.builtin.copy
:
src
:
/
files/etc/gdm3/custom.conf
src
:
files/etc/gdm3/custom.conf
dest
:
/etc/gdm3/custom.conf
dest
:
/etc/gdm3/custom.conf
owner
:
root
owner
:
root
group
:
root
group
:
root
mode
:
'
0644'
mode
:
'
0644'
notify
:
-
Restart gdm.
-
name
:
Copy xinetd config files.
-
name
:
Copy xinetd config files.
ansible.builtin.copy
:
ansible.builtin.copy
:
src
:
/
files/etc/xinetd.d/vncserver
src
:
files/etc/xinetd.d/vncserver
dest
:
/etc/xinetd.d/vncserver
dest
:
/etc/xinetd.d/vncserver
owner
:
root
owner
:
root
group
:
root
group
:
root
mode
:
'
0644'
mode
:
'
0644'
notify
:
notify
:
-
Restart xinetd.
-
Restart xinetd.
# - name: Create wait-based vnc services.
# ansible.builtin.template:
# src: files/etc/xinetd.d/vnctmpl
# dest: /etc/xinetd.d/vncserver{{ item.login }}
# loop: "{{ users }}"
# notify:
# - Restart xinetd.
...
...
vars/passwords.yml
View file @
a25da65e
$ANSIBLE_VAULT;1.1;AES256
$ANSIBLE_VAULT;1.1;AES256
30333733393662313736616332346333653462356333393834303232643034383337333963643837
64623337656162663336636639633530383834386464393531313239383166323264353134316164
6534343731313033663436353232616134333839383562370a623030303534656463363630383562
6462363564363836396533343365356334323733623234310a613866323262663930616537623035
30313237333531323561376631376330613730336262643562393533393761396330343064313132
66313135336137393933376531303035356535343832656439616665376230613261383364313466
3263393730336531640a383135306261663738636666626562623161393133386163313836663664
3937613262356633620a383537313366386663326237643338663639646264623532346431303661
66353630386636383333613062316633383536386363613230383564383362346361653034333830
34653163356233623239653561616532363136623735303161353732363039666561643261376162
66336137326430653463343362666565323661353434353735336461363230303664306463656638
62656464383532376566643637653562386337373765346466646265636266313739636266613861
36383963393434363835333133363234303934313539396435333664343165343135623731313630
33306263623335613832393361343432373433303935346630393165376231613462346637323164
32626331636337663539663935643833383133666638663264303138303930383232336163303830
38313836346336323530303262623266356230346132303563363866356532336335356138343566
37643864363931636333323266663836363164643031333564326163653034643264303636386662
39373161353464353334336435373838303731333466633364626466616538313833326266636663
63353337336461636638623139373336353136343231383830336234396436313538623533353339
61393537303135363237306435663836316662363433633530613936393730633034313333333766
31336465653932343531326563643164333837633066326161306662363333663462333766353430
66303532666238316237356565313638393036343932323563383839363562356362396439306532
62353431366263336362
62353431663538333361323935393863356463396537313661653530353032643435666366653434
34633166663134353432313630393764666464366165373566316633303830613463363434623964
35393766313931326365666634643163323164663263386531366130346663643332616565333066
31623264666530303662666638303130376466646361663465366338643162396438653938396535
31626137336462353561386131646162333065646630343732393932626561626161323538383130
36626338626330333731353638373761626332383665353936666263313062343366616564343063
32636365343562313433346137643131326265396632383936356432343636356363386430313436
31346137646264333564313630323037356462313832653133353031653134353232623363363331
37623734393261306237643632613938393439313866326566353661363661303034656265616634
61393836666666663434643930343066313761646336303065393465613732666132643734396466
63623963343835393864396363656166323166353663313639373238616166333338366136343464
39646139393237643761633336353862306162663732376366633335336263623735346130646562
36643038386563393134313162363131633836313063366537346462366535326262353863663065
66393562633661373030376139656331393466623365333933333031663933663866313135346362
31623236363832373133336665326336646332653762373961333538313038626462666238333063
33653230326266623433313335623364656266626562366237376533633135633438383761313431
64633065343431396535646638616139663333343337353532653264323932626132636333643237
3566
vars/users.yml
View file @
a25da65e
users
:
users
:
-
login
:
ecitk
-
login
:
ecitk
displ
:
1
sudo
:
yes
sudo
:
yes
name
:
Todor
name
:
ecitk
sshkey
:
"
ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCvodoKak1YZDw/psy6XYT/dFKvZkeIwwFexwQPVtH36tOpexVFXLQ0fYpSzQiQdejnCzLlaMFUAQCqotKObp7ByKlEHsacxUtq4XxddufX67XV3jQuvitr51x9JDxaa0XpG0uZpN4uYNV9ievWiF2ZTBxS6+SZM7eKuLjhJPafwltWzZxGiBjm1/HP7IExSpGhgvdaoEspozNBWrm9ILGF1s957jsiq/+5cbXyY3Z37Js2ByyA1eM9Zmhai/5dzhwzqQuOvGVFHSNmJEjL+ZmQtpLqaq5o8YvSUu/jL7ZMe58Ppx3sbuCW0bGJ4NwJi1yankKEdotPiu1rjrfcN2hSg8rTLx+qJ3i7vBH3jgyS54K4Jfob1lbEwpE2OeBwiY9mcJbuMOsj7MS9vYzrVYACymbS+cLprEm5Wr7Rdy5jx23p1YMHFqmFUWZFs1Esa0wOGPwnaDUxTQWk3HtA8nah8p92F55yqPfGNL3eH8h0tPMsQDBms0jxQak10lvQa5Skdd5Jte8JHg6H0jbTuFZoXrIynqUxttdKCHPYcRt/YsFB5iXT1JqCe0ftVTYYb9/2rNJHQnTQ5zfaGXuCoT6aJmR7bWy7jhsGlxuDyON1bVTw8Sq0DGXZPmAwhZAqGwnhs0YDYH+VTtZA1fgY5EXQmafC8UPYExY9WKeNgCo22w==
user@machine"
sshkey
:
"
ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAACAQCvodoKak1YZDw/psy6XYT/dFKvZkeIwwFexwQPVtH36tOpexVFXLQ0fYpSzQiQdejnCzLlaMFUAQCqotKObp7ByKlEHsacxUtq4XxddufX67XV3jQuvitr51x9JDxaa0XpG0uZpN4uYNV9ievWiF2ZTBxS6+SZM7eKuLjhJPafwltWzZxGiBjm1/HP7IExSpGhgvdaoEspozNBWrm9ILGF1s957jsiq/+5cbXyY3Z37Js2ByyA1eM9Zmhai/5dzhwzqQuOvGVFHSNmJEjL+ZmQtpLqaq5o8YvSUu/jL7ZMe58Ppx3sbuCW0bGJ4NwJi1yankKEdotPiu1rjrfcN2hSg8rTLx+qJ3i7vBH3jgyS54K4Jfob1lbEwpE2OeBwiY9mcJbuMOsj7MS9vYzrVYACymbS+cLprEm5Wr7Rdy5jx23p1YMHFqmFUWZFs1Esa0wOGPwnaDUxTQWk3HtA8nah8p92F55yqPfGNL3eH8h0tPMsQDBms0jxQak10lvQa5Skdd5Jte8JHg6H0jbTuFZoXrIynqUxttdKCHPYcRt/YsFB5iXT1JqCe0ftVTYYb9/2rNJHQnTQ5zfaGXuCoT6aJmR7bWy7jhsGlxuDyON1bVTw8Sq0DGXZPmAwhZAqGwnhs0YDYH+VTtZA1fgY5EXQmafC8UPYExY9WKeNgCo22w==
user@machine"
-
login
:
ecies
-
login
:
ecies
sudo
:
no
sudo
:
no
displ
:
2
sshkey
:
no
sshkey
:
no
name
:
Emma
name
:
ecies
-
login
:
eciae
sudo
:
no
sshkey
:
no
name
:
eciae
-
login
:
ecihmt
sudo
:
no
sshkey
:
no
name
:
ecihmt
-
login
:
sundasarshad
sudo
:
no
sshkey
:
no
name
:
sundasarshad
-
login
:
anaghagaikwad
sudo
:
no
sshkey
:
no
name
:
anaghagaikwad
-
login
:
haileeherbst
sudo
:
no
sshkey
:
no
name
:
haileeherbst
-
login
:
jimmyji
sudo
:
no
sshkey
:
no
name
:
jimmyji
-
login
:
mariabaraona
sudo
:
no
sshkey
:
no
name
:
mariabaraona
-
login
:
dinashaaban
sudo
:
no
sshkey
:
no
name
:
dinashaaban
-
login
:
danielagutierrez
sudo
:
no
sshkey
:
no
name
:
danielagutierrez
-
login
:
nizeng
sudo
:
no
sshkey
:
no
name
:
nizeng
-
login
:
danielguignard
sudo
:
no
sshkey
:
no
name
:
danielguignard