From 31c214b1299b82444aff1c1d4f6d6f4f79706bda Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 13 Sep 2017 18:39:33 +0200 Subject: Migration of all services to systemd folder and remove usless code from stow-services --- services/aria2d.service | 9 --------- services/twmnd.service | 12 ------------ stow-services | 4 +--- systemd/.config/systemd/user.conf | 2 ++ systemd/.config/systemd/user/aria2d.service | 9 +++++++++ systemd/.config/systemd/user/ssh-agent.service | 10 ++++++++++ systemd/.config/systemd/user/tmux.service | 17 +++++++++++++++++ systemd/.config/systemd/user/twmnd.service | 12 ++++++++++++ 8 files changed, 51 insertions(+), 24 deletions(-) delete mode 100644 services/aria2d.service delete mode 100644 services/twmnd.service create mode 100644 systemd/.config/systemd/user.conf create mode 100644 systemd/.config/systemd/user/aria2d.service create mode 100644 systemd/.config/systemd/user/ssh-agent.service create mode 100644 systemd/.config/systemd/user/tmux.service create mode 100644 systemd/.config/systemd/user/twmnd.service diff --git a/services/aria2d.service b/services/aria2d.service deleted file mode 100644 index 4980e3a..0000000 --- a/services/aria2d.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Aria2 Service -After=network.target - -[Service] -ExecStart=/usr/bin/aria2c --enable-rpc --rpc-listen-all --rpc-allow-origin-all --save-session %h/.config/aria2/session.lock --input-file %h/.config/aria2/session.lock --conf-path=%h/.config/aria2/aria2.conf - -[Install] -WantedBy=multi-user.target diff --git a/services/twmnd.service b/services/twmnd.service deleted file mode 100644 index 355d8ec..0000000 --- a/services/twmnd.service +++ /dev/null @@ -1,12 +0,0 @@ -[Unit] -Description=twmn server -After=graphical.target - -[Service] -Type=simple -StandardOutput=null -Restart=on-failure -ExecStart=/usr/bin/twmnd - -[Install] -WantedBy=default.target diff --git a/stow-services b/stow-services index db9350c..6a8031a 100755 --- a/stow-services +++ b/stow-services @@ -1,9 +1,7 @@ serviceName=$(echo $1 | cut -d'/' -f'2') if [[ $1 =~ "/" && $serviceName != "" ]]; then if [ -f "$1" ]; then - if [[ $(echo $1 | cut -d'/' -f1) == "services" ]]; then - ln -s $(readlink -f $1) ~/.config/systemd/user/default.target.wants/$serviceName - elif [[ $(echo $1 | cut -d'/' -f1) == "services-root" ]]; then + if [[ $(echo $1 | cut -d'/' -f1) == "services-root" ]]; then sudo ln -s $(readlink -f $1) /usr/lib/systemd/system/$serviceName else echo "You can only install service from services and services-root folder !" diff --git a/systemd/.config/systemd/user.conf b/systemd/.config/systemd/user.conf new file mode 100644 index 0000000..9f9e7b7 --- /dev/null +++ b/systemd/.config/systemd/user.conf @@ -0,0 +1,2 @@ +[Manager] +#DefaultEnvironment="XDG_RUNTIME_DIR=/run/user/1000" "XAUTHORITY=/home/neodarz/.Xauthority" "DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus" diff --git a/systemd/.config/systemd/user/aria2d.service b/systemd/.config/systemd/user/aria2d.service new file mode 100644 index 0000000..4980e3a --- /dev/null +++ b/systemd/.config/systemd/user/aria2d.service @@ -0,0 +1,9 @@ +[Unit] +Description=Aria2 Service +After=network.target + +[Service] +ExecStart=/usr/bin/aria2c --enable-rpc --rpc-listen-all --rpc-allow-origin-all --save-session %h/.config/aria2/session.lock --input-file %h/.config/aria2/session.lock --conf-path=%h/.config/aria2/aria2.conf + +[Install] +WantedBy=multi-user.target diff --git a/systemd/.config/systemd/user/ssh-agent.service b/systemd/.config/systemd/user/ssh-agent.service new file mode 100644 index 0000000..9428410 --- /dev/null +++ b/systemd/.config/systemd/user/ssh-agent.service @@ -0,0 +1,10 @@ +[Unit] +Description=SSH key agent + +[Service] +Type=simple +Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket +ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK + +[Install] +WantedBy=default.target diff --git a/systemd/.config/systemd/user/tmux.service b/systemd/.config/systemd/user/tmux.service new file mode 100644 index 0000000..1f1bca3 --- /dev/null +++ b/systemd/.config/systemd/user/tmux.service @@ -0,0 +1,17 @@ +[Unit] +Description=tmux default session (detached) +Documentation=man:tmux(1) + +[Service] +Type=forking +Environment=DISPLAY=:0 +ExecStart=/usr/bin/tmux new-session -d + +ExecStop=/home/neodarz/.tmux/plugins/tmux-resurrect/scripts/save.sh +ExecStop=/usr/bin/tmux kill-server +KillMode=none + +RestartSec=2 + +[Install] +WantedBy=default.target diff --git a/systemd/.config/systemd/user/twmnd.service b/systemd/.config/systemd/user/twmnd.service new file mode 100644 index 0000000..355d8ec --- /dev/null +++ b/systemd/.config/systemd/user/twmnd.service @@ -0,0 +1,12 @@ +[Unit] +Description=twmn server +After=graphical.target + +[Service] +Type=simple +StandardOutput=null +Restart=on-failure +ExecStart=/usr/bin/twmnd + +[Install] +WantedBy=default.target -- cgit v1.2.1