view host/startupScripts.sh @ 1632:0344a535b1db

add doc
author fffilimonov
date Tue, 14 Dec 2021 07:41:01 +0000
parents 35c626c06dd5
children
line wrap: on
line source

ROOTPWD=$(pwd);
IP=$(ifconfig en0 | awk '{if($0~"inet "){print $2}}');

user=$(whoami);

systemStarup='/Library/LaunchDaemons';
localStartup=${ROOTPWD}'/local/startup';
startup=${ROOTPWD}'/startup/macos';
startupPostgres=${ROOTPWD}'/startup/postgres/macos';

function addStartup() {
  cd $localStartup;
  for file in *.plist; do
    sudo ln -sf ${localStartup}/${file} ${systemStarup}/${file};
    sudo chown root:wheel ${localStartup}/${file};
  done;
}