Mercurial Hosting > luan
diff backup/macos/startupScripts.sh @ 1693:45eaaf5146f3
add backup autostart
author | Vadim Filimonov <fffilimonov@yandex.ru> |
---|---|
date | Mon, 20 Jun 2022 10:29:43 +0300 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/backup/macos/startupScripts.sh Mon Jun 20 10:29:43 2022 +0300 @@ -0,0 +1,16 @@ +cd .. +ROOTPWD=$(pwd); + +user=$(whoami); + +systemStarup='/Library/LaunchDaemons'; +localStartup=${ROOTPWD}'/local/startup'; +startup=${ROOTPWD}'/macos'; + +function addStartup() { + cd $localStartup; + for file in *.plist; do + sudo ln -sf ${localStartup}/${file} ${systemStarup}/${file}; + sudo chown root:wheel ${localStartup}/${file}; + done; +}