/*
Authors:
Jakub Hrozek <jhrozek@redhat.com>
Copyright (C) 2009 Red Hat
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SSS_OPS_H__
#define __SSS_OPS_H__
#include "tools/tools_util.h"
#include <stdbool.h>
/* 0 = not set, pick default */
struct ops_ctx {
char *name;
char *gecos;
char *home;
char *shell;
int lock;
bool create_homedir;
bool remove_homedir;
char *skeldir;
char *maildir;
char **addgroups;
char **rmgroups;
char *addattr;
char *setattr;
char *delattr;
char *sysdb_fqname;
};
/* default values for add operations */
struct confdb_ctx *confdb,
const char *gecos,
const char *homedir,
const char *shell,
int create_home,
const char *skeldir);
/* default values for remove operations */
struct confdb_ctx *confdb,
int remove_home);
/* synchronous operations */
const char *name,
const char *name,
#endif /* __SSS_OPS_H__ */