This set of instructions goes with this presentation deck.
yum install postgis24_10
| import csv | |
| import logging | |
| import fiona | |
| from shapely import geos, wkb | |
| from shapely.geometry import shape | |
| output_file = file_name + ".processing.csv" | |
| with fiona.open(file_name, "r") as source: |
| --- | |
| # ----------------------------------------------------------------------------------------- | |
| # Purpose: To manage system users: | |
| # - create/upadate a user who is allowed accessing via ssh connection | |
| # - add public ssh-key of user into its authorized_keys | |
| # - allow user to use sudo by putting a config into /etc/sudoers.d/ | |
| # - remove authorized_keys of inactive users | |
| # - remove inactive users | |
| # - remove sudo permission by removing its config file in /etc/sudoers.d/ if any | |
| # Maintanance: Nghia Le [at] INFOTECHVIET |
This set of instructions goes with this presentation deck.
yum install postgis24_10