diff --git a/eoptasks/eoptasks.py b/eoptasks/eoptasks.py index a1f11c7..43ae387 100755 --- a/eoptasks/eoptasks.py +++ b/eoptasks/eoptasks.py @@ -217,6 +217,8 @@ def command_window(args): # memcached.restart is useful to force shared theme to be updated. 'memcached.restart': '''sudo service memcached restart; /bin/true''', 'restart.all': '''sudo systemctl restart authentic2-multitenant bijoe chrono combo corbo fargo hobo passerelle wcs; /bin/true''', + # puppet.update, unfortunately without proper error checking. + 'puppet.update': '''sudo puppet agent -t || true''', }.get(args.cmd, args.cmd) if args.args: cmd += ' ' + ' '.join(['"%s"' % x for x in args.args])