What is the impact of losing activation?

You can easily specify a MAC address when you create your VM’s. You are imagining problems when the solution exists.

While true for the commercial versions of the modules, the basic SysAdmin module is useless without registration.

Many people use FreePBX without needing the Sysadmin module - all it does it make managing your system easier. If you’re comfortable with linux, there’s no need for it.

However, it does make a bunch of things easier (eg, adding SSL certificates,configuring email, setting up VPNs etc).

1 Like

To achieve that :slight_smile:

sed -i -e '/sipstation/d' -e '/certificates/d' -e '/sysadmin/d' /var/spool/cron/asterisk
fwconsole moduleadmin disablerepo commercial
fwconsole moduleadmin delete xmpp
fwconsole moduleadmin delete cxpanel
for i in $(fwconsole moduleadmin list|grep Commercial|awk '{print $2 }'); do fwconsole moduleadmin delete $i;done
for i in $(fwconsole moduleadmin list|grep Commercial|awk '{print $2 }'); do fwconsole moduleadmin delete $i;done 
# repeat until there are is no more bitching.
fwconsole r

From then on you can cron your :-

fwconsole moduleadmin upgradeall

safely

I don’t think you need to repeat it - if you just use fwconsole ma --force, there’s no need to keep retrying.

1 Like