services.py 216 B

123456789101112131415
  1. from setux.core.mapping import Services
  2. class Debian(Services):
  3. mapping = dict(
  4. cups = 'cupsd',
  5. )
  6. class FreeBSD(Services):
  7. mapping = dict(
  8. ssh = 'sshd',
  9. cups = 'cupsd',
  10. )