From da4003eedd008ce59cc559c2166072c99d409f40 Mon Sep 17 00:00:00 2001 From: "Jean-Marc Pigeon (Delson)" Date: Mon, 30 Jun 2025 01:45:45 -0400 Subject: [PATCH] Adding local profile within init script --- linux/osukiss/mailleur | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/linux/osukiss/mailleur b/linux/osukiss/mailleur index f2ab3e4..c60b566 100644 --- a/linux/osukiss/mailleur +++ b/linux/osukiss/mailleur @@ -1,4 +1,4 @@ -#!/bin/sh +#! /usr/bin/bash #================================================================= # Begin receiver # @@ -26,6 +26,11 @@ APPNAME=mailleur DAEMON=receiver DAEMON_PID=/run/${APPNAME}/${DAEMON}.lock +#checking profile +if [ -f /etc/profile ] ; then + . /etc/profile + fi + # Some functions to make the below more readable #loading load configuration file -- 2.47.3