view host/macos/removeStartupScripts.sh @ 2119:57381da15e68 ssltesting tip

remove renewSsl.sh and renewSsl.plist
author Violet7
date Tue, 06 Jan 2026 15:10:58 -0800
parents fd3d56f39450
children
line wrap: on
line source

#!/bin/bash

. startupScripts.sh;

cd $localStartup;

for file in *.plist; do
	sudo rm ${systemStarup}/${file};
	sudo rm $file;
done;