14 lines
472 B
Python
14 lines
472 B
Python
# -*- coding: utf-8 -*-
|
|
from setuphelpers import *
|
|
|
|
# Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
|
|
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
|
|
|
|
|
|
def install():
|
|
print("Installing: %s" % control.package)
|
|
|
|
filecopyto(r'infolix_ca.crt',r'/usr/local/share/ca-certificates/')
|
|
|
|
run('update-ca-certificates')
|