#!/usr/bin/perl -w

# Script to refresh subscription information
# It should be called internally, not expected its usage by users

use strict;
use warnings;

use EBox;
use EBox::Global;


EBox::init();

my $remoteServices = EBox::Global->modInstance('remoteservices');
$remoteServices->save();

1;
