1unit_files = [ 2 'org.open_power.OCC.Control.service', 3 'op-occ-disable@.service', 4 'op-occ-enable@.service' 5] 6 7fs = import('fs') 8foreach u : unit_files 9 fs.copyfile( 10 u, 11 install: true, 12 install_dir: systemd_system_unit_dir 13 ) 14endforeach 15