mirror of
https://github.com/tmux-plugins/tmux-continuum.git
synced 2025-01-03 04:41:21 +00:00
Merge pull request #106 from UbiquitousPhoton/fix_systemd_install
Fix systemd unit install on clean system
This commit is contained in:
commit
64a059996f
@ -51,7 +51,6 @@ systemd_unit_file() {
|
|||||||
local systemd_tmux_server_start_cmd="$(get_tmux_option "${systemd_tmux_server_start_cmd_option}" "${systemd_tmux_server_start_cmd_default}" )"
|
local systemd_tmux_server_start_cmd="$(get_tmux_option "${systemd_tmux_server_start_cmd_option}" "${systemd_tmux_server_start_cmd_default}" )"
|
||||||
local tmux_start_script_path="${CURRENT_DIR}/linux_start_tmux.sh"
|
local tmux_start_script_path="${CURRENT_DIR}/linux_start_tmux.sh"
|
||||||
local systemd_unit_file=$(template "${tmux_start_script_path}" "${options}")
|
local systemd_unit_file=$(template "${tmux_start_script_path}" "${options}")
|
||||||
mkdir -p "$(dirname ${systemd_unit_file_path})"
|
|
||||||
echo "$systemd_unit_file"
|
echo "$systemd_unit_file"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -60,8 +59,13 @@ write_unit_file() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
write_unit_file_unless_exists() {
|
write_unit_file_unless_exists() {
|
||||||
if ! [ -e "${systemd_unit_file_path}" ]; then
|
|
||||||
write_unit_file
|
local systemd_unit_file_dir=$(dirname ${systemd_unit_file_path})
|
||||||
|
if ! [ -d $systemd_unit_file_dir ]; then
|
||||||
|
mkdir -p $systemd_unit_file_dir
|
||||||
|
write_unit_file
|
||||||
|
elif ! [ -e "${systemd_unit_file_path}" ]; then
|
||||||
|
write_unit_file
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user