Re: Run script as root without sudo

From: Aristedes Maniatis via freebsd-stable <freebsd-stable_at_freebsd.org>
Date: Thu, 19 Aug 2021 06:25:11 UTC
That would require root to put the file there and then to reboot the 
machine.

Ari

On 19/8/21 4:16pm, Jonathan Chen wrote:
> On Thu, 19 Aug 2021 at 17:33, Aristedes Maniatis via freebsd-stable
> <freebsd-stable@freebsd.org> wrote:
> [...]
>> How else can I get this script running as root remotely in a completely
>> unattended way?
> The way it's usually done is with an rc script in /usr/local/etc/rc.d, eg:
>    /usr/local/etc/rc.d/myscript
>
> and add the entry into /etc/rc.conf:
>    myscript_enable="YES"
>
> The FreeBSD AWS instances uses this method to auto-install required packages.
>
> Cheers.